diff options
| author | Tectu <joel@unormal.org> | 2012-08-13 13:40:48 +0200 | 
|---|---|---|
| committer | Tectu <joel@unormal.org> | 2012-08-13 13:40:48 +0200 | 
| commit | c14a813c6ee78b7f55bfaf40ae4012a87d6348cf (patch) | |
| tree | 360f5cc35eadce6b5d5fcee66dc346ffa966ec9c | |
| parent | dd0aa5db1cf52f181b465571e8a492169a2efc2a (diff) | |
| download | uGFX-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.mk | 4 | ||||
| -rw-r--r-- | console/readme.txt | 3 | ||||
| -rw-r--r-- | lcd.mk | 4 | 
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. + @@ -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 | 
