summaryrefslogtreecommitdiff
path: root/src/arch/msp430fr5969lp/driver/stdin.cc
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2018-01-12 14:40:30 +0100
committerDaniel Friesel <derf@finalrewind.org>2018-01-12 14:40:30 +0100
commit3875f37b2ce1d020aaf5174ea2a885bfdb98db98 (patch)
tree8815e77b3407ea45209bb03147dd08be82b8e539 /src/arch/msp430fr5969lp/driver/stdin.cc
parentc00a200c508e18c41b6c55506ee35a2f21a6fa57 (diff)
add stdin for esp8266 and msp430 as well as preliminary shell app
Diffstat (limited to 'src/arch/msp430fr5969lp/driver/stdin.cc')
-rw-r--r--src/arch/msp430fr5969lp/driver/stdin.cc31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/arch/msp430fr5969lp/driver/stdin.cc b/src/arch/msp430fr5969lp/driver/stdin.cc
new file mode 100644
index 0000000..cc6e586
--- /dev/null
+++ b/src/arch/msp430fr5969lp/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);
+ }
+}