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