mFrame
載入中...
搜尋中...
無符合項目
core/src/mux/gpio2/GPIO.h
1
7#ifndef CORE_88F2BF66_2F56_4FDE_9F8C_99E3219D90BE
8#define CORE_88F2BF66_2F56_4FDE_9F8C_99E3219D90BE
9
10/* ***************************************************************************************
11 * Include
12 */
13
14//----------------------------------------------------------------------------------------
15#include "mframe.h"
16
17//----------------------------------------------------------------------------------------
18#include "./../Mux.h"
19
20/* ***************************************************************************************
21 * Namespace
22 */
24 enum struct GPIO : unsigned int;
25
26 constexpr core::mux::Mux operator+(GPIO e) {
27 return static_cast<core::mux::Mux>(e);
28 }
29} // namespace core::mux::gpio2
30
31/* ***************************************************************************************
32 * Class/Interface/Struct/Enum
33 */
34enum struct core::mux::gpio2::GPIO : unsigned int {
35 P2_0 = +core::mux::Mux::P2_0_GPIO,
36 P2_1 = +core::mux::Mux::P2_1_GPIO,
37 P2_2 = +core::mux::Mux::P2_2_GPIO,
38 P2_3 = +core::mux::Mux::P2_3_GPIO,
39 P2_4 = +core::mux::Mux::P2_4_GPIO,
40 P2_5 = +core::mux::Mux::P2_5_GPIO,
41 P2_6 = +core::mux::Mux::P2_6_GPIO
42};
43
44/* ***************************************************************************************
45 * End of file
46 */
47
48#endif /* CORE_88F2BF66_2F56_4FDE_9F8C_99E3219D90BE */
Definition core/src/mux/gpio2/GPIO.h:23