mFrame
載入中...
搜尋中...
無符合項目
CoreClockOption.h
1
7#ifndef CORE_854DAEC1_A4B5_44E6_9839_2C3F12A76114
8#define CORE_854DAEC1_A4B5_44E6_9839_2C3F12A76114
9
10/* ***************************************************************************************
11 * Include
12 */
13
14//----------------------------------------------------------------------------------------
15#include "chip.h"
16#include "mframe.h"
17
18//----------------------------------------------------------------------------------------
19
20/* ***************************************************************************************
21 * Namespace
22 */
23namespace core {
24 enum struct CoreClockOption : unsigned int;
25
26 constexpr unsigned int operator+(CoreClockOption e) {
27 return static_cast<unsigned int>(e);
28 }
29} // namespace core
30
31/* ***************************************************************************************
32 * Class/Interface/Struct/Enum
33 */
34enum struct core::CoreClockOption : unsigned int {
35 CORE_12M = 12000000U,
36 CORE_24M = 24000000U,
37 CORE_48M = 48000000U,
38 CORE_64M = 64000000U,
39 CORE_96M = 96000000U
40};
41
42/* ***************************************************************************************
43 * End of file
44 */
45
46#endif /* CORE_854DAEC1_A4B5_44E6_9839_2C3F12A76114 */
Definition glikey/Mask.h:22
CoreClockOption
Definition CoreClockOption.h:34