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