mFrame
載入中...
搜尋中...
無符合項目
FircTrimSource.h
1
7#ifndef MCXA153_6BB611B3_A977_4E7A_983E_731361667896
8#define MCXA153_6BB611B3_A977_4E7A_983E_731361667896
9
10/* ***************************************************************************************
11 * Include
12 */
13#include "mframe.h"
14
15//----------------------------------------------------------------------------------------
16
17//----------------------------------------------------------------------------------------
18
19/* ***************************************************************************************
20 * Namespace
21 */
22namespace mcxa153::chip::clock {
23 enum struct FircTrimSource : unsigned int;
24
30 constexpr unsigned int operator+(FircTrimSource e) {
31 return static_cast<unsigned int>(e);
32 }
33} // namespace mcxa153::chip::clock
34
35/* ***************************************************************************************
36 * Class/Interface/Struct/Enum
37 */
38
47enum struct mcxa153::chip::clock::FircTrimSource : unsigned int {
48 USB0 = 0U,
49 SYS_OSC = 2U
50};
51
52/* ***************************************************************************************
53 * End of file
54 */
55
56#endif /* MCXA153_6BB611B3_A977_4E7A_983E_731361667896 */
時鐘源附加識別碼枚舉
Definition AttachID.h:33
FircTrimSource
FIRC時鐘修剪源選擇枚舉
Definition FircTrimSource.h:47
constexpr unsigned int operator+(AttachID e)
將AttachID轉換為無符號整數
Definition AttachID.h:42