mFrame
載入中...
搜尋中...
無符合項目
lpspi/Count.h
1
7#ifndef MCXA153_5484074F_6389_47B8_A4AA_F613F4E3CDA4
8#define MCXA153_5484074F_6389_47B8_A4AA_F613F4E3CDA4
9
10/* ***************************************************************************************
11 * Include
12 */
13#include "mframe.h"
14
15//----------------------------------------------------------------------------------------
16
17//----------------------------------------------------------------------------------------
18
19/* ***************************************************************************************
20 * Namespace
21 */
23 enum struct Count : uint32;
24
25 constexpr uint32 operator+(Count e) {
26 return static_cast<uint32>(e);
27 }
28} // namespace mcxa153::chip::lpspi
29
30/* ***************************************************************************************
31 * Class/Interface/Struct/Enum
32 */
33
42enum struct mcxa153::chip::lpspi::Count : uint32 {
43 /* The count of LPSPI_TDBR */
44 TDBR = (128U),
45
46 /* The count of LPSPI_RDBR */
47 RDBR = (128U)
48};
49
50/* ***************************************************************************************
51 * End of file
52 */
53
54#endif /* MCXA153_5484074F_6389_47B8_A4AA_F613F4E3CDA4 */
Definition lpspi/Count.h:22
Count
LPSPI (Low Power Serial Peripheral Interface) 週邊計數器枚舉
Definition lpspi/Count.h:42