mFrame
載入中...
搜尋中...
無符合項目
CoreLdoDriveStrength.h
1
7#ifndef CHIP_709DE4F5_0C33_4523_9AAC_BBB946937360
8#define CHIP_709DE4F5_0C33_4523_9AAC_BBB946937360
9
10/* ***************************************************************************************
11 * Include
12 */
13
14//----------------------------------------------------------------------------------------
15#include "mframe.h"
16
17//----------------------------------------------------------------------------------------
18
19/* ***************************************************************************************
20 * Namespace
21 */
22namespace chip::spc {
23 enum struct CoreLdoDriveStrength : unsigned char;
24
25 constexpr unsigned char operator+(CoreLdoDriveStrength e) {
26 return static_cast<unsigned char>(e);
27 }
28} // namespace chip::spc
29
30/* ***************************************************************************************
31 * Class/Interface/Struct/Enum
32 */
33enum struct chip::spc::CoreLdoDriveStrength : unsigned char {
34 LOW = 0x0U,
35 NORMAL = 0x1U
36};
37
38/* ***************************************************************************************
39 * End of file
40 */
41
42#endif /* CHIP_709DE4F5_0C33_4523_9AAC_BBB946937360 */
Definition ActiveModeCoreLdoOption.h:24
CoreLdoDriveStrength
Definition CoreLdoDriveStrength.h:33