diff options
author | Tectu <joel@unormal.org> | 2012-08-09 01:20:15 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-08-09 01:20:15 +0200 |
commit | 640b7473935bea33102187a2833dae940b345576 (patch) | |
tree | 47763231ea2c3a7829bd603c83990915335c65d8 /halext/readme.txt | |
parent | 384529af26a27ef7500b4ff97fbcd85e50385f7b (diff) | |
download | uGFX-640b7473935bea33102187a2833dae940b345576.tar.gz uGFX-640b7473935bea33102187a2833dae940b345576.tar.bz2 uGFX-640b7473935bea33102187a2833dae940b345576.zip |
more touchpad stuff
Diffstat (limited to 'halext/readme.txt')
-rw-r--r-- | halext/readme.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/halext/readme.txt b/halext/readme.txt index 5983635a..1123e827 100644 --- a/halext/readme.txt +++ b/halext/readme.txt @@ -6,14 +6,14 @@ To include any of these functions/drivers in your project... include $(LCDLIB)/lcd.mk
3/ In your project Makefile add the makefiles for any specific drivers you want e.g
- include $(LCDLIB)/halext/drivers/gdispNokia6610/gdisp_lld.mk
+ include $(LCDLIB)/halext/drivers/touchpad/touchpadXPT2046/touchpad_lld.mk
4/ In your project halconf.h turn on the support you want eg.
/**
- * @brief Enables the GDISP subsystem.
+ * @brief Enables the Touchpad subsystem.
*/
- #if !defined(HAL_USE_GDISP) || defined(__DOXYGEN__)
- #define HAL_USE_GDISP TRUE
+ #if !defined(HAL_USE_TOUCHPAD) || defined(__DOXYGEN__)
+ #define HAL_USE_TOUCHPAD TRUE
#endif
5/ Do a make clean.
|