diff options
author | trsaunders <trsaunders@gmail.com> | 2012-06-27 17:51:08 +0100 |
---|---|---|
committer | trsaunders <trsaunders@gmail.com> | 2012-06-27 17:51:08 +0100 |
commit | bdcbdd4c38b492bba01789ea44d971950ade5864 (patch) | |
tree | 862504754595d326c7204df8e2a1235c94204c74 /readme | |
parent | 8a6337b4e746c3d9f42061b26aa2e17370b7db37 (diff) | |
parent | 3a5be9c67812c2ef16f335078f2ec8e8773d2144 (diff) | |
download | uGFX-bdcbdd4c38b492bba01789ea44d971950ade5864.tar.gz uGFX-bdcbdd4c38b492bba01789ea44d971950ade5864.tar.bz2 uGFX-bdcbdd4c38b492bba01789ea44d971950ade5864.zip |
merge upstream changes
Diffstat (limited to 'readme')
-rw-r--r-- | readme | 46 |
1 files changed, 6 insertions, 40 deletions
@@ -1,47 +1,13 @@ -Chibios LCD Driver +please read the wiki pages to this project carefully, before you ask any questions: -### checkout Driver code into ext/ -cd chibios/ext -git clone https://github.com/tectu/Chibios-LCD-Driver lcd +http://chibios.org/dokuwiki/doku.php?id=chibios:community -### Edit boardfiles: -add the following to your board.h file, matching to your pinconfig: - #define TP_PORT GPIOC - #define TP_IRQ 4 - #define TP_CS 6 - #define LCD_DATA_PORT GPIOE - #define LCD_CMD_PORT GPIOD - #define LCD_CS 12 - #define LCD_RS 13 - #define LCD_WR 14 - #define LCD_RD 15 -### Edit Makefile: -include lcd.mk: - include $(CHIBIOS)/ext/lcd/lcd.mk +### Maintainer & Contributors +Contributors: - Badger + - Abhishek -Add $(LCDSRC) to CSRC: - CSRC = $(PORTSRC) \ - $(KERNSRC) \ - $(TESTSRC) \ - $(HALSRC) \ - $(PLATFORMSRC) \ - $(BOARDSRC) \ - $(FATFSSRC) \ - $(LCDSRC) \ - $(CHIBIOS)/os/various/evtimer.c \ - $(CHIBIOS)/os/various/syscalls.c +Maintainer: - Joel Bodenmann aka Tectu <joel@unormal.org> -Add $(LCDINC) to INCDIR: - INCDIR = $(PORTINC) $(KERNINC) $(TESTINC) \ - $(HALINC) $(PLATFORMINC) $(BOARDINC) \ - $(FATFSINC) \ - $(LCDINC) \ - $(CHIBIOS)/os/various ../common - -### Use -1. include header files wherever you need it. - -2. select the controller type you want to use in glcdconf.h |