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