mFrame
載入中...
搜尋中...
無符合項目
SelectName.h
1
7#ifndef CHIP_6FC81D2E_17CD_439B_97EE_C2F1A9A41CE5
8#define CHIP_6FC81D2E_17CD_439B_97EE_C2F1A9A41CE5
9
10/* ***************************************************************************************
11 * Include
12 */
13
14//----------------------------------------------------------------------------------------
15#include "mframe.h"
16
17//----------------------------------------------------------------------------------------
18
19/* ***************************************************************************************
20 * Namespace
21 */
22namespace chip::clock {
23 enum struct SelectName : unsigned int;
24
25 constexpr unsigned int operator+(SelectName e) {
26 return static_cast<unsigned int>(e);
27 }
28} // namespace chip::clock
29
30/* ***************************************************************************************
31 * Class/Interface/Struct/Enum
32 */
33enum struct chip::clock::SelectName : unsigned int {
34 I3C0_FCLK = (0x0A0U),
35 CTIMER0 = (0x0A8U),
36 CTIMER1 = (0x0B0U),
37 CTIMER2 = (0x0B8U),
38 LPI2C0 = (0x0C8U),
39 LPSPI0 = (0x0D0U),
40 LPSPI1 = (0x0D8U),
41 LPUART0 = (0x0E0U),
42 LPUART1 = (0x0E8U),
43 LPUART2 = (0x0F0U),
44 USB0 = (0x0F8U),
45 LPTMR0 = (0x100U),
46 OSTIMER0 = (0x108U),
47 ADC0 = (0x110U),
48 CMP0_RR = (0x120U),
49 CMP1_RR = (0x130U),
50 TRACE = (0x138U),
51 CLKOUT = (0x140U),
52 SYSTICK = (0x148U),
53 SCGSCS = (0x200U),
54 MAX = (0x200U)
55};
56
57/* ***************************************************************************************
58 * End of file
59 */
60
61#endif /* CHIP_6FC81D2E_17CD_439B_97EE_C2F1A9A41CE5 */
Definition AttachID.h:23
SelectName
Definition SelectName.h:33