summaryrefslogtreecommitdiff
path: root/src/arch/msp430fr5994lp/driver/stdin.cc
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2018-12-11 10:09:37 +0100
committerDaniel Friesel <derf@finalrewind.org>2018-12-11 10:09:37 +0100
commitc1027b36455cf47d336d42e2e42a63f096f7e772 (patch)
tree8d4590b6493c73ab9f85d78a9aa384495e103e7b /src/arch/msp430fr5994lp/driver/stdin.cc
parent00205e4996df209dc43664af7c171d34c2e97cda (diff)
New architecture: msp430fr5994lp (MSP430FR5994 Launchpad)
Almost exclusively copypasted from msp430fr5969lp. May be replaced by symlinks later on.
Diffstat (limited to 'src/arch/msp430fr5994lp/driver/stdin.cc')
-rw-r--r--src/arch/msp430fr5994lp/driver/stdin.cc31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/arch/msp430fr5994lp/driver/stdin.cc b/src/arch/msp430fr5994lp/driver/stdin.cc
new file mode 100644
index 0000000..cc6e586
--- /dev/null
+++ b/src/arch/msp430fr5994lp/driver/stdin.cc
@@ -0,0 +1,31 @@
+#include "driver/stdin.h"
+#include <msp430.h>
+
+void StandardInput::setup()
+{
+ UCA0IE |= UCRXIE;
+}
+
+bool StandardInput::hasKey()
+{
+ if (write_pos != read_pos) {
+ return true;
+ }
+ return false;
+}
+
+char StandardInput::getKey()
+{
+ char ret = buffer[read_pos++];
+ read_pos %= 8;
+ return ret;
+}
+
+StandardInput kin;
+
+__attribute__((interrupt(USCI_A0_VECTOR))) __attribute__((wakeup)) void handle_stdin()
+{
+ if (UCA0IFG & UCRXIFG) {
+ kin.addKey(UCA0RXBUF);
+ }
+}