aboutsummaryrefslogtreecommitdiffstats
path: root/src/drivers/DebugPins.h
diff options
context:
space:
mode:
authorJF <jf@codingfield.com>2020-03-03 19:59:01 +0100
committerJF <jf@codingfield.com>2020-03-03 19:59:01 +0100
commit545636940f68108a361dda85e0e48a240909cf29 (patch)
treef471cf8f60976ab1fffce747db021e5706bf60c2 /src/drivers/DebugPins.h
parent79b4f006be8732663706f1177e17e52829eb661f (diff)
parentd2f725ec9bc6d848906b83ca539d873223d74648 (diff)
Merge branch 'littlevgl'
# Conflicts: # src/DisplayApp/Screens/Clock.cpp # src/DisplayApp/Screens/Clock.h
Diffstat (limited to 'src/drivers/DebugPins.h')
-rw-r--r--src/drivers/DebugPins.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/drivers/DebugPins.h b/src/drivers/DebugPins.h
new file mode 100644
index 00000000..cb20bac5
--- /dev/null
+++ b/src/drivers/DebugPins.h
@@ -0,0 +1,25 @@
+#pragma once
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <stdint.h>
+
+typedef enum {
+ DebugPin0 = 27,
+ DebugPin1 = 29,
+ DebugPin2 = 20,
+ DebugPin3 = 17,
+ DebugPin4 = 11,
+} debugpins_pins;
+
+void debugpins_init();
+void debugpins_set(debugpins_pins pin);
+void debugpins_clear(debugpins_pins pin);
+void debugpins_pulse(debugpins_pins pin);
+
+#ifdef __cplusplus
+}
+#endif
+