Skip to content

Commit

Permalink
Adding UNDEFINED pin status
Browse files Browse the repository at this point in the history
  • Loading branch information
isidromv authored Apr 1, 2024
1 parent 0c853c5 commit e7558bd
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions api/Common.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ extern "C"{
void yield(void);

typedef enum {
LOW = 0,
HIGH = 1,
CHANGE = 2,
FALLING = 3,
RISING = 4,
LOW = 0,
HIGH = 1,
CHANGE = 2,
FALLING = 3,
RISING = 4,
UNDEFINED = 5,
} PinStatus;

typedef enum {
Expand Down

0 comments on commit e7558bd

Please sign in to comment.