summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLeo C2014-10-14 22:38:56 +0200
committerLeo C2014-10-14 22:38:56 +0200
commitcd5ee5442821f283f6661befb24b885d944e4c5e (patch)
tree44deae1ded16c5e818e461e7d07c25ebbe116c9b /include
parent41d36f28612cb6c49cf0260236f3b834549883be (diff)
downloadz180-stamp-cd5ee5442821f283f6661befb24b885d944e4c5e.zip
pin command: pin groups work nowhexrel-3
Diffstat (limited to 'include')
-rw-r--r--include/pin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pin.h b/include/pin.h
index e673b56..5b37587 100644
--- a/include/pin.h
+++ b/include/pin.h
@@ -4,7 +4,7 @@
/* Number of user configurable I/O pins */
#define PIN_MAX 11
-typedef enum {INPUT, INPUT_PULLUP, OUTPUT, OUTPUT_TIMER} pinmode_t;
+typedef enum {NONE, INPUT, INPUT_PULLUP, OUTPUT, OUTPUT_TIMER} pinmode_t;
int pin_config(int pin, pinmode_t mode);
pinmode_t pin_config_get(int pin);