mFrame
載入中...
搜尋中...
無符合項目
lpadc/Count.h
1
7#ifndef MCXA153_10816593_8BB5_47CC_9BC4_D9E57A9766DE
8#define MCXA153_10816593_8BB5_47CC_9BC4_D9E57A9766DE
9
10/* ***************************************************************************************
11 * Include
12 */
13#include "mframe.h"
14
15//----------------------------------------------------------------------------------------
16
17//----------------------------------------------------------------------------------------
18
19/* ***************************************************************************************
20 * Namespace
21 */
23 enum struct Count : unsigned int;
24
25 constexpr unsigned int operator+(Count e) {
26 return static_cast<unsigned int>(e);
27 }
28} // namespace mcxa153::chip::lpadc
29
30/* ***************************************************************************************
31 * Class/Interface/Struct/Enum
32 */
33
42enum struct mcxa153::chip::lpadc::Count : unsigned int {
43 /* The count of TCTRL */
44 TCTRL = 4U,
45
46 /* The count of GCC */
47 GCC = 1U,
48
49 /* The count of GCR */
50 GCR = 1U,
51
52 /* The count of CMDL */
53 CMDL = 7U,
54
55 /* The count of CMDH */
56 CMDH = 7U,
57
58 /* The count of CV */
59 CV = 15U
60};
61
62/* ***************************************************************************************
63 * End of file
64 */
65
66#endif /* MCXA153_10816593_8BB5_47CC_9BC4_D9E57A9766DE */
Definition lpadc/Count.h:22
Count
LPADC (Low Power Analog-to-Digital Converter) 計數器枚舉
Definition lpadc/Count.h:42