mFrame
載入中...
搜尋中...
無符合項目
Inverted.h
1
7#ifndef MCXA153_A6BB2BF4_A8FE_4BCB_8DB8_22BA2C05E1CB
8#define MCXA153_A6BB2BF4_A8FE_4BCB_8DB8_22BA2C05E1CB
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 Inverted : bool;
24
36 constexpr bool operator+(Inverted e) {
37 return static_cast<bool>(e);
38 }
39} // namespace mcxa153::chip::port
40
41/* ***************************************************************************************
42 * Class/Interface/Struct/Enum
43 */
44
97 NORMAL = 0U,
98
132 INVERT = 1U
133};
134
135/* ***************************************************************************************
136 * End of file
137 */
138
139#endif /* MCXA153_A6BB2BF4_A8FE_4BCB_8DB8_22BA2C05E1CB */
Definition Config.h:36
Inverted
GPIO Pin Digital Input Signal Inversion Configuration.
Definition Inverted.h:70