mFrame
載入中...
搜尋中...
無符合項目
LowPowerRequestOutputOverride.h
1
7#ifndef CHIP_8CF9BB85_93C0_42AC_9C81_65BC30021316
8#define CHIP_8CF9BB85_93C0_42AC_9C81_65BC30021316
9
10/* ***************************************************************************************
11 * Include
12 */
13
14//----------------------------------------------------------------------------------------
15#include "mframe.h"
16
17//----------------------------------------------------------------------------------------
18
19/* ***************************************************************************************
20 * Namespace
21 */
22namespace chip::spc {
23 enum struct LowPowerRequestOutputOverride : unsigned char;
24
25 constexpr unsigned char operator+(LowPowerRequestOutputOverride e) {
26 return static_cast<unsigned char>(e);
27 }
28} // namespace chip::spc
29
30/* ***************************************************************************************
31 * Class/Interface/Struct/Enum
32 */
33
38enum struct chip::spc::LowPowerRequestOutputOverride : unsigned char {
39 NOT_FORCED = 0x0U,
40 RESERVED = 0x1U,
41 FORCED_LOW = 0x2U,
42 FORCED_HIGH = 0x3U
43};
44
45/* ***************************************************************************************
46 * End of file
47 */
48
49#endif /* CHIP_8CF9BB85_93C0_42AC_9C81_65BC30021316 */
Definition ActiveModeCoreLdoOption.h:24
LowPowerRequestOutputOverride
SPC low power request output override.
Definition LowPowerRequestOutputOverride.h:38