diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-01-12 14:40:30 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-01-12 14:40:30 +0100 |
commit | 3875f37b2ce1d020aaf5174ea2a885bfdb98db98 (patch) | |
tree | 8815e77b3407ea45209bb03147dd08be82b8e539 /include | |
parent | c00a200c508e18c41b6c55506ee35a2f21a6fa57 (diff) |
add stdin for esp8266 and msp430 as well as preliminary shell app
Diffstat (limited to 'include')
-rw-r--r-- | include/esp8266/driver/stdin.h | 24 | ||||
-rw-r--r-- | include/msp430fr5969lp/driver/stdin.h | 24 |
2 files changed, 48 insertions, 0 deletions
diff --git a/include/esp8266/driver/stdin.h b/include/esp8266/driver/stdin.h new file mode 100644 index 0000000..6462e0c --- /dev/null +++ b/include/esp8266/driver/stdin.h @@ -0,0 +1,24 @@ +#ifndef STANDARDINPUT_H +#define STANDARDINPUT_H + +class StandardInput { + private: + StandardInput(const StandardInput ©); + char buffer[8]; + unsigned char write_pos, read_pos; + + public: + StandardInput() : write_pos(0), read_pos(0) {} + void setup(); + bool hasKey(); + char getKey(); + + inline void addKey(char key) { + buffer[write_pos++] = key; + write_pos %= 8; + } +}; + +extern StandardInput kin; + +#endif diff --git a/include/msp430fr5969lp/driver/stdin.h b/include/msp430fr5969lp/driver/stdin.h new file mode 100644 index 0000000..6462e0c --- /dev/null +++ b/include/msp430fr5969lp/driver/stdin.h @@ -0,0 +1,24 @@ +#ifndef STANDARDINPUT_H +#define STANDARDINPUT_H + +class StandardInput { + private: + StandardInput(const StandardInput ©); + char buffer[8]; + unsigned char write_pos, read_pos; + + public: + StandardInput() : write_pos(0), read_pos(0) {} + void setup(); + bool hasKey(); + char getKey(); + + inline void addKey(char key) { + buffer[write_pos++] = key; + write_pos %= 8; + } +}; + +extern StandardInput kin; + +#endif |