mFrame
載入中...
搜尋中...
無符合項目
ctimer/Count.h
1
7#ifndef CHIP_96B30582_BE64_4756_B86E_775350378102
8#define CHIP_96B30582_BE64_4756_B86E_775350378102
9
10/* ***************************************************************************************
11 * Include
12 */
13
14//----------------------------------------------------------------------------------------
15#include "mframe.h"
16
17//----------------------------------------------------------------------------------------
18
19/* ***************************************************************************************
20 * Namespace
21 */
22namespace chip::ctimer {
23 enum struct Count : unsigned int;
24}
25
26/* ***************************************************************************************
27 * Class/Interface/Struct/Enum
28 */
29enum struct chip::ctimer::Count : unsigned int {
30 /* The count of CTIMER_CR */
31 CR = 4U,
32
33 /* The count of CTIMER_MR */
34 MR = 4U,
35
36 /* The count of CTIMER_MSR */
37 MSR = 4U
38};
39
40/* ***************************************************************************************
41 * End of file
42 */
43
44#endif /* CHIP_96B30582_BE64_4756_B86E_775350378102 */
Definition ctimer/Count.h:22