diff options
author | Tectu <joel@unormal.org> | 2012-05-29 02:14:15 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-05-29 02:14:15 +0200 |
commit | 90e756b420c4d1945d52ba6d3091a48657d91e5a (patch) | |
tree | 53c7ec4a3acaa1e6cf6d9dd46d382b2a1209df40 | |
parent | 1fcb2ba9c26ba2209f882309b5d8019cf3eb642c (diff) | |
download | uGFX-90e756b420c4d1945d52ba6d3091a48657d91e5a.tar.gz uGFX-90e756b420c4d1945d52ba6d3091a48657d91e5a.tar.bz2 uGFX-90e756b420c4d1945d52ba6d3091a48657d91e5a.zip |
documentation
-rw-r--r-- | README.md (renamed from readme) | 22 |
1 files changed, 18 insertions, 4 deletions
@@ -1,10 +1,24 @@ -Chibios LCD Driver +## Features -### checkout Driver code into ext/ +Supported drawing functions: + + - Pixels + - Lines + - Rectanges (frames/filled) + - Circles (frames/filled) + - character + - string + + + + +# Install + +## checkout Driver code into ext/ cd chibios/ext git clone https://github.com/tectu/Chibios-LCD-Driver lcd -### Edit Makefile: +## Edit Makefile: include lcd.mk: include $(CHIBIOS)/ext/lcd/lcd.mk @@ -27,6 +41,6 @@ Add $(LCDINC) to INCDIR: $(LCDINC) \ $(CHIBIOS)/os/various ../common -### Use +## Use include glcd.h header file wherever you need it. |