mFrame
載入中...
搜尋中...
無符合項目
Rate.h
1
7#ifndef MCXA153_E5227669_41CC_44AE_B28D_811F4FC92334
8#define MCXA153_E5227669_41CC_44AE_B28D_811F4FC92334
9
10/* ***************************************************************************************
11 * Include
12 */
13#include "mframe.h"
14
15//----------------------------------------------------------------------------------------
16
17//----------------------------------------------------------------------------------------
18
19/* ***************************************************************************************
20 * Namespace
21 */
22namespace mcxa153::chip::port {
23 enum struct Rate : bool;
24
36 constexpr bool operator+(Rate e) {
37 return static_cast<bool>(e);
38 }
39} // namespace mcxa153::chip::port
40
41/* ***************************************************************************************
42 * Class/Interface/Struct/Enum
43 */
44
71enum struct mcxa153::chip::port::Rate : bool {
125 FAST = 0U,
126
193 SLOW = 1U
194};
195
196/* ***************************************************************************************
197 * End of file
198 */
199
200#endif /* MCXA153_E5227669_41CC_44AE_B28D_811F4FC92334 */
Definition Config.h:36
Rate
GPIO Pin Output Slew Rate Configuration.
Definition Rate.h:71