summaryrefslogtreecommitdiff
path: root/include/arch/esp8266/driver/stdin.h
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-12-25 18:09:33 +0100
committerDaniel Friesel <derf@finalrewind.org>2021-12-25 18:09:33 +0100
commit35a98377f52caf5ac37c2e932b9f2d4c9196c195 (patch)
treed87920e581a25b3ef30b4cce967cd8842db5c1eb /include/arch/esp8266/driver/stdin.h
parent16b712e0233cfd7b60668927067885f7e3551b92 (diff)
Remove esp8266 support in favor of ESP8266 RTOS SDK
Diffstat (limited to 'include/arch/esp8266/driver/stdin.h')
-rw-r--r--include/arch/esp8266/driver/stdin.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/include/arch/esp8266/driver/stdin.h b/include/arch/esp8266/driver/stdin.h
deleted file mode 100644
index 1085111..0000000
--- a/include/arch/esp8266/driver/stdin.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright 2020 Daniel Friesel
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
-#ifndef STANDARDINPUT_H
-#define STANDARDINPUT_H
-
-class StandardInput {
- private:
- StandardInput(const StandardInput &copy);
- 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