Skip to content

Commit e7558bd

Browse files
authored
Adding UNDEFINED pin status
1 parent 0c853c5 commit e7558bd

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

api/Common.h

+6-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ extern "C"{
99
void yield(void);
1010

1111
typedef enum {
12-
LOW = 0,
13-
HIGH = 1,
14-
CHANGE = 2,
15-
FALLING = 3,
16-
RISING = 4,
12+
LOW = 0,
13+
HIGH = 1,
14+
CHANGE = 2,
15+
FALLING = 3,
16+
RISING = 4,
17+
UNDEFINED = 5,
1718
} PinStatus;
1819

1920
typedef enum {

0 commit comments

Comments
 (0)