We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeefda7 commit 09ba622Copy full SHA for 09ba622
1 file changed
Common.h
@@ -36,11 +36,14 @@ typedef enum {
36
} PinStatus;
37
38
typedef enum {
39
- INPUT = 0x0,
40
- OUTPUT = 0x1,
41
- INPUT_PULLUP = 0x2,
42
- INPUT_PULLDOWN = 0x3,
43
- OUTPUT_OPENDRAIN = 0x4,
+ INPUT = 0x0,
+ OUTPUT = 0x1,
+ INPUT_PULLUP = 0x2,
+ INPUT_FLOATING = INPUT,
+ INPUT_PULLDOWN = 0x3,
44
+ OUTPUT_OPEN_DRAIN = 0x4,
45
+ OUTPUT_OPENDRAIN = OUTPUT_OPEN_DRAIN,
46
+ INPUT_ANALOG = 0x5,
47
} PinMode;
48
49
0 commit comments