mFrame
載入中...
搜尋中...
無符合項目
LowPowerRequestPinPolarity.h
1
7#ifndef CHIP_AC136868_124A_4977_BC00_1F65A40A914A
8#define CHIP_AC136868_124A_4977_BC00_1F65A40A914A
9
10/* ***************************************************************************************
11 * Include
12 */
13
14//----------------------------------------------------------------------------------------
15#include "mframe.h"
16
17//----------------------------------------------------------------------------------------
18
19/* ***************************************************************************************
20 * Namespace
21 */
22namespace chip::spc {
23 enum struct LowPowerRequestPinPolarity : unsigned char;
24
25 constexpr unsigned char operator+(LowPowerRequestPinPolarity 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::LowPowerRequestPinPolarity : unsigned char {
39 HIGH_TRUE_POLARITY = 0x0U,
40 LOW_TRUE_POLARITY = 0x1U
41};
42
43/* ***************************************************************************************
44 * End of file
45 */
46
47#endif /* CHIP_AC136868_124A_4977_BC00_1F65A40A914A */
Definition ActiveModeCoreLdoOption.h:24
LowPowerRequestPinPolarity
SPC low power request output pin polarity.
Definition LowPowerRequestPinPolarity.h:38