diff options
author | Tectu <joel@unormal.org> | 2012-08-13 08:45:02 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-08-13 08:45:02 +0200 |
commit | 9d886f2451c7a277257bd5b779581527238e12aa (patch) | |
tree | 8b96bece31041718aedfc86db49aae44852a9705 | |
parent | 8142d6c931b0fdd010ab8607d39e652626e06471 (diff) | |
download | uGFX-9d886f2451c7a277257bd5b779581527238e12aa.tar.gz uGFX-9d886f2451c7a277257bd5b779581527238e12aa.tar.bz2 uGFX-9d886f2451c7a277257bd5b779581527238e12aa.zip |
readme fix
-rw-r--r-- | readme1.txt | 32 | ||||
-rw-r--r-- | readme2.txt | 19 |
2 files changed, 0 insertions, 51 deletions
diff --git a/readme1.txt b/readme1.txt deleted file mode 100644 index e2d33c18..00000000 --- a/readme1.txt +++ /dev/null @@ -1,32 +0,0 @@ -To include any of these functions/drivers in your project...
-
- 1/ Specify the path to the LCDLIB. If none defined, default is $(CHIBIOS)/ext/lcd
-
- 2/ In your project Makefile (amongst similiar lines but after the hal line) add the line...
- include $(LCDLIB)/lcd.mk
-
- 3/ Add $(LCDSRC) and $(LCDINC) to your SRCS and INCDIR of your projects Makefile
-
- 4/ In your project Makefile add the makefiles for any specific drivers you want e.g
- include $(LCDLIB)/halext/drivers/touchpad/touchpadXPT2046/touchpad_lld.mk
- include $(LCDLIB)/halext/drivers/gdisp/gdispNokia6610/gdisp_lld.mk
-
- 5/ In your project halconf.h turn on the support you want eg.
- /**
- * @brief Enables the Touchpad subsystem.
- */
- #if !defined(HAL_USE_TOUCHPAD) || defined(__DOXYGEN__)
- #define HAL_USE_TOUCHPAD TRUE
- #endif
-
- /**
- * @brief Enables the GDISP subsystem.
- */
- #if !defined(HAL_USE_GDISP) || defined(__DOXYGEN__)
- #define HAL_USE_GDISP TRUE
- /* Any driver specific defines required go here. The below line is an example. */
- #define GDISP_NEED_MULTITHREAD TRUE
- #endif
-
- 6/ Do a make clean.
-
diff --git a/readme2.txt b/readme2.txt deleted file mode 100644 index 0b67c9b0..00000000 --- a/readme2.txt +++ /dev/null @@ -1,19 +0,0 @@ -## Doxygen
-run doxygen in the toplevel directory to generate the doxygen documentation in html
-
-
-
-## Wiki
-please read the wiki pages to this project carefully, before you ask any questions:
-
-http://chibios.org/dokuwiki/doku.php?id=chibios:community
-
-
-
-## Maintainer & Contributors
-please read the contributors.txt file which contains a full history of each contribution
-
-Maintainer:
- - Joel Bodenmann aka Tectu <joel@unormal.org>
-
-
|