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