mFrame
載入中...
搜尋中...
無符合項目
FircTrimSource.h
1
7#ifndef CHIP_6BB611B3_A977_4E7A_983E_731361667896
8#define CHIP_6BB611B3_A977_4E7A_983E_731361667896
9
10/* ***************************************************************************************
11 * Include
12 */
13
14//----------------------------------------------------------------------------------------
15#include "mframe.h"
16
17//----------------------------------------------------------------------------------------
18
19/* ***************************************************************************************
20 * Namespace
21 */
22namespace chip::clock {
23 enum struct FircTrimSource : unsigned int;
24
25 constexpr unsigned int operator+(FircTrimSource 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::FircTrimSource : unsigned int {
34 USB0 = 0U,
35 SYS_OSC = 2U
36};
37
38/* ***************************************************************************************
39 * End of file
40 */
41
42#endif /* CHIP_6BB611B3_A977_4E7A_983E_731361667896 */
Definition AttachID.h:23
FircTrimSource
Definition FircTrimSource.h:33