The offical µGFX repository.
 
 
 
 
 
Go to file
Tectu 484daa395a GPIO interfacing rewrite 2012-06-25 13:02:54 +02:00
demos added power modes demo 2012-06-23 16:00:52 +02:00
drivers GPIO interfacing rewrite 2012-06-25 13:02:54 +02:00
LICENSE added license file 2012-06-07 22:38:30 +02:00
fonts.c Changes in the Text Rendering API 2012-06-12 18:06:06 +05:30
fonts.h Changes in the Text Rendering API 2012-06-12 18:06:06 +05:30
glcd.c whitespaces 2012-06-24 18:28:57 +02:00
glcd.h ssd1289 powermodes implemented (powerOn, powerOff, sleepOn, sleepOff) 2012-06-23 14:04:56 +02:00
glcdconf.h revert glcdconf.h 2012-06-19 23:36:39 +01:00
graph.c some fix, just esthetical 2012-06-23 21:34:24 +02:00
graph.h graphDrawSystem() does take now grid-X and grid-Y values 2012-06-23 21:15:31 +02:00
gui.c guiInit() returns pointer to created thread 2012-06-25 10:52:52 +02:00
gui.h guiInit() returns pointer to created thread 2012-06-25 10:52:52 +02:00
lcd.mk restructure 2012-06-17 01:30:12 +02:00
readme GPIO interfacing rewrite 2012-06-25 13:02:54 +02:00
touchpad.c added support for 3D touchpads 2012-06-15 10:18:52 +02:00
touchpad.h c++ compatibility, FSMC driver for ssd1289 2012-06-19 20:05:01 +01:00

readme

Chibios LCD Driver

### checkout Driver code into ext/
cd chibios/ext
git clone https://github.com/tectu/Chibios-LCD-Driver lcd

### Edit Makefile:
include lcd.mk:
	include $(CHIBIOS)/ext/lcd/lcd.mk

Add $(LCDSRC) to CSRC:
	CSRC = $(PORTSRC) \
	       $(KERNSRC) \
	       $(TESTSRC) \
	       $(HALSRC) \
	       $(PLATFORMSRC) \
	       $(BOARDSRC) \
	       $(FATFSSRC) \
	       $(LCDSRC) \
	       $(CHIBIOS)/os/various/evtimer.c \
	       $(CHIBIOS)/os/various/syscalls.c

Add $(LCDINC) to INCDIR:
	INCDIR = $(PORTINC) $(KERNINC) $(TESTINC) \
	         $(HALINC) $(PLATFORMINC) $(BOARDINC) \
	         $(FATFSINC) \
	         $(LCDINC) \
	         $(CHIBIOS)/os/various ../common

### Use
read here: http://chibios.org/dokuwiki/doku.php?id=chibios:community:introduction

### Maintainer & Contributors
Contributors:	- Badger
				- Abhishek 

Maintainer:		- Joel Bodenmann aka Tectu <joel@unormal.org>