aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-08-13 13:40:48 +0200
committerTectu <joel@unormal.org>2012-08-13 13:40:48 +0200
commitc14a813c6ee78b7f55bfaf40ae4012a87d6348cf (patch)
tree360f5cc35eadce6b5d5fcee66dc346ffa966ec9c
parentdd0aa5db1cf52f181b465571e8a492169a2efc2a (diff)
downloaduGFX-c14a813c6ee78b7f55bfaf40ae4012a87d6348cf.tar.gz
uGFX-c14a813c6ee78b7f55bfaf40ae4012a87d6348cf.tar.bz2
uGFX-c14a813c6ee78b7f55bfaf40ae4012a87d6348cf.zip
ported console (thanks to badger)
-rw-r--r--console/console.c (renamed from old/console.c)0
-rw-r--r--console/console.h (renamed from old/console.h)0
-rw-r--r--console/console.mk4
-rw-r--r--console/readme.txt3
-rw-r--r--lcd.mk4
5 files changed, 10 insertions, 1 deletions
diff --git a/old/console.c b/console/console.c
index 55bc3312..55bc3312 100644
--- a/old/console.c
+++ b/console/console.c
diff --git a/old/console.h b/console/console.h
index edd8498e..edd8498e 100644
--- a/old/console.h
+++ b/console/console.h
diff --git a/console/console.mk b/console/console.mk
new file mode 100644
index 00000000..58c1b8f1
--- /dev/null
+++ b/console/console.mk
@@ -0,0 +1,4 @@
+LCDSRC += $(LCDLIB)/console/console.c
+
+LCDINC += $(LCDLIB)/console
+
diff --git a/console/readme.txt b/console/readme.txt
new file mode 100644
index 00000000..806fdf98
--- /dev/null
+++ b/console/readme.txt
@@ -0,0 +1,3 @@
+This directory contains any files which are needed by the
+console implementation.
+
diff --git a/lcd.mk b/lcd.mk
index 802873b5..c49ddc61 100644
--- a/lcd.mk
+++ b/lcd.mk
@@ -3,8 +3,10 @@ ifeq ($(LCDLIB),)
LCDLIB = $(CHIBIOS)/ext/lcd
endif
+include $(LCDLIB)/console/console.mk
+
LCDSRC += $(LCDLIB)/src/gdisp.c \
$(LCDLIB)/src/gdisp_fonts.c \
- $(LCDLIB)/src/touchpad.c
+ $(LCDLIB)/src/touchpad.c
LCDINC += $(LCDLIB)/include