mFrame
載入中...
搜尋中...
無符合項目
AnalogModuleControl.h
1
8#ifndef MCXA153_9D2F289D_5DA8_441F_8C0D_3B21CA42AB5A
9#define MCXA153_9D2F289D_5DA8_441F_8C0D_3B21CA42AB5A
10
11/* ***************************************************************************************
12 * Include
13 */
14#include "mframe.h"
15
16//----------------------------------------------------------------------------------------
17
18//----------------------------------------------------------------------------------------
19
20/* ***************************************************************************************
21 * Namespace
22 */
23namespace mcxa153::chip::spc {
24 enum struct AnalogModuleControl : unsigned int;
25} // namespace mcxa153::chip::spc
26
27/* ***************************************************************************************
28 * Class/Interface/Struct/Enum
29 */
30
49enum struct mcxa153::chip::spc::AnalogModuleControl : unsigned int {
50 VREF = 1UL << 0UL,
51 USB_3V_DET = 1UL << 1UL,
52 DAC0 = 1UL << 4UL,
53 DAC1 = 1UL << 5UL,
54 DAC2 = 1UL << 6UL,
55 OPAMP0 = 1UL << 8UL,
56 OPAMP1 = 1UL << 9UL,
57 OPAMP2 = 1UL << 10UL,
58 CMP0 = 1UL << 16UL,
59 CMP1 = 1UL << 17UL,
60 CMP2 = 1UL << 18UL,
61 CMP0_DAC = 1UL << 20UL,
62 CMP1_DAC = 1UL << 21UL,
63 CMP2_DAC = 1UL << 22UL,
66 ALL_MODULES = 0x770773UL
67};
68
69/* ***************************************************************************************
70 * End of file
71 */
72
73#endif /* MCXA153_9D2F289D_5DA8_441F_8C0D_3B21CA42AB5A */
Definition ActiveModeCoreLdoOption.h:24
AnalogModuleControl
Definition AnalogModuleControl.h:49