mFrame
載入中...
搜尋中...
無符合項目
EdgeTriggerMode.h
1
7#ifndef HAL_5DA4D4C3_BE0B_47A0_87BB_C7A609C28D96
8#define HAL_5DA4D4C3_BE0B_47A0_87BB_C7A609C28D96
9
10/* ***************************************************************************************
11 * Include
12 */
13//----------------------------------------------------------------------------------------
14#include "mframe.h"
15//----------------------------------------------------------------------------------------
16
17/* ***************************************************************************************
18 * Namespace
19 */
20namespace hal::digital {
21 enum struct EdgeTriggerMode : unsigned char;
22} // namespace hal::digital
23
24/* ***************************************************************************************
25 * Class/Interface/Struct/Enum
26 */
27
33enum struct hal::digital::EdgeTriggerMode : unsigned char {
34 NONE,
35 RISING,
36 FALLING,
37 EITHER
38};
39
40/* ***************************************************************************************
41 * End of file
42 */
43#endif /* HAL_5DA4D4C3_BE0B_47A0_87BB_C7A609C28D96 */
Definition EdgeTriggerEvent.h:20
EdgeTriggerMode
邊緣觸發模式。
Definition EdgeTriggerMode.h:33