summaryrefslogtreecommitdiffstats
path: root/Src/osmolib/src/target/firmware/display/display.c
diff options
context:
space:
mode:
Diffstat (limited to 'Src/osmolib/src/target/firmware/display/display.c')
-rw-r--r--Src/osmolib/src/target/firmware/display/display.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/Src/osmolib/src/target/firmware/display/display.c b/Src/osmolib/src/target/firmware/display/display.c
deleted file mode 100644
index 1c8f1fb..0000000
--- a/Src/osmolib/src/target/firmware/display/display.c
+++ /dev/null
@@ -1,20 +0,0 @@
-
-#include <stdint.h>
-
-#include <display.h>
-
-struct display_driver *display;
-
-int display_puts(const char *str)
-{
- char c;
-
- if (display->puts)
- display->puts(str);
- else {
- while ((c = *str++))
- display_putchar(c);
- }
-
- return 0;
-}