mFrame
載入中...
搜尋中...
無符合項目
DriveStrength.h
1
7#ifndef MCXA153_A02DFC86_7A2A_452E_8028_C20454521278
8#define MCXA153_A02DFC86_7A2A_452E_8028_C20454521278
9
10/* ***************************************************************************************
11 * Include
12 */
13#include "mframe.h"
14
15//----------------------------------------------------------------------------------------
16
17//----------------------------------------------------------------------------------------
18
19/* ***************************************************************************************
20 * Namespace
21 */
22namespace mcxa153::chip::port {
23 enum struct DriveStrength : bool;
24
36 constexpr bool operator+(DriveStrength e) {
37 return static_cast<bool>(e);
38 }
39} // namespace mcxa153::chip::port
40
41/* ***************************************************************************************
42 * Class/Interface/Struct/Enum
43 */
44
90 LOW = 0U,
91
112 HIGH = 1U
113};
114
115/* ***************************************************************************************
116 * End of file
117 */
118
119#endif /* MCXA153_A02DFC86_7A2A_452E_8028_C20454521278 */
Definition Config.h:36
DriveStrength
GPIO Pin Drive Strength Configuration.
Definition DriveStrength.h:70