mFrame
載入中...
搜尋中...
無符合項目
SircTrimMode.h
1
7#ifndef MCXA153_EE7603EA_5DC2_4D18_8DB1_D08DA61241B7
8#define MCXA153_EE7603EA_5DC2_4D18_8DB1_D08DA61241B7
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 SircTrimMode : unsigned int;
24
30 constexpr unsigned int operator+(SircTrimMode e) {
31 return static_cast<unsigned int>(e);
32 }
33} // namespace mcxa153::chip::clock
34
35/* ***************************************************************************************
36 * Class/Interface/Struct/Enum
37 */
38
48enum struct mcxa153::chip::clock::SircTrimMode : unsigned int {
49 NON_UPDATE = (0x100U),
56 UPDATE = (0x100U) | (0x200U)
60};
61
62/* ***************************************************************************************
63 * End of file
64 */
65
66#endif /* MCXA153_EE7603EA_5DC2_4D18_8DB1_D08DA61241B7 */
時鐘源附加識別碼枚舉
Definition AttachID.h:33
SircTrimMode
慢速內部參考時鐘修正模式
Definition SircTrimMode.h:48
constexpr unsigned int operator+(AttachID e)
將AttachID轉換為無符號整數
Definition AttachID.h:42