aboutsummaryrefslogtreecommitdiffstats
path: root/vex/digital.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-11-11 15:02:17 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-11-11 15:02:17 -0500
commit7772ea4579a45bcf63ebd5e68be66ba1a9c72dfa (patch)
tree9e1ce52ea97102d3513e519a77d999eac228820b /vex/digital.cpp
parent02b3ff42cccf32617c88c0ca65436b8c9d4f61eb (diff)
chibios!
Diffstat (limited to 'vex/digital.cpp')
-rw-r--r--vex/digital.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/vex/digital.cpp b/vex/digital.cpp
new file mode 100644
index 0000000..f05edc3
--- /dev/null
+++ b/vex/digital.cpp
@@ -0,0 +1,37 @@
+#include "digital.hpp"
+
+#include <ch.h>
+#include <hal.h>
+
+// a lookup table for pads and ports
+static const int portPad[12][2] = {
+ {GPIOE_BASE, 9}, // digital pin 1
+ {GPIOE_BASE, 11}, // 2
+ {GPIOC_BASE, 6}, // ...
+ {GPIOC_BASE, 7},
+ {GPIOE_BASE, 13},
+ {GPIOE_BASE, 14},
+ {GPIOE_BASE, 8},
+ {GPIOE_BASE, 10},
+ {GPIOE_BASE, 12},
+ {GPIOE_BASE, 7},
+ {GPIOD_BASE, 0},
+ {GPIOD_BASE, 1},
+};
+
+namespace digital {
+ void setMode(int pin, int output) {
+ const auto& pp = portPad[pin - 1];
+ palSetPadMode(reinterpret_cast<GPIO_TypeDef*>(pp[0]), pp[1],
+ output ? PAL_MODE_OUTPUT_PUSHPULL : PAL_MODE_INPUT_PULLUP);
+ }
+
+ void set(int pin, int val) {
+ const auto& pp = portPad[pin - 1];
+ if (val)
+ palSetPad(reinterpret_cast<GPIO_TypeDef*>(pp[0]), pp[1]);
+ else
+ palClearPad(reinterpret_cast<GPIO_TypeDef*>(pp[0]), pp[1]);
+ }
+}
+