diff options
author | Tectu <joel@unormal.org> | 2012-06-15 10:18:52 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-15 10:18:52 +0200 |
commit | c7a393c6d789bc68387205447082cdf2106862f8 (patch) | |
tree | 4d3d9a5ecde4c3d204482f3f8d9e40c07884f663 | |
parent | 83d3135ab1683c29edc6e76ad34ff61d9df69572 (diff) | |
download | uGFX-c7a393c6d789bc68387205447082cdf2106862f8.tar.gz uGFX-c7a393c6d789bc68387205447082cdf2106862f8.tar.bz2 uGFX-c7a393c6d789bc68387205447082cdf2106862f8.zip |
added support for 3D touchpads
-rw-r--r-- | drivers/ads7843_lld.c | 4 | ||||
-rw-r--r-- | drivers/ads7843_lld.h | 1 | ||||
-rw-r--r-- | glcdconf.h | 4 | ||||
-rw-r--r-- | lcd.mk | 3 | ||||
-rw-r--r-- | touchpad.c | 4 | ||||
-rw-r--r-- | touchpad.h | 11 |
6 files changed, 24 insertions, 3 deletions
diff --git a/drivers/ads7843_lld.c b/drivers/ads7843_lld.c index ee0513ea..76e11123 100644 --- a/drivers/ads7843_lld.c +++ b/drivers/ads7843_lld.c @@ -36,4 +36,8 @@ __inline uint16_t lld_readY(void) { return y; } +__inline uint16_t lld_readZ(void) { + return 0; +} + #endif diff --git a/drivers/ads7843_lld.h b/drivers/ads7843_lld.h index 6ccae533..388aacc8 100644 --- a/drivers/ads7843_lld.h +++ b/drivers/ads7843_lld.h @@ -8,6 +8,7 @@ uint16_t lld_readX(void); uint16_t lld_readY(void); +uint16_t lld_readZ(void); #endif #endif @@ -8,7 +8,7 @@ /***** TOUCHPAD CONTROLLER *****/ -#define TOUCHPAD_USE_ADS7843 - +//#define TOUCHPAD_USE_ADS7843 +#define TOUCHPAD_USE_XPT2046 #endif @@ -6,7 +6,8 @@ LCDSRC = ${CHIBIOS}/ext/lcd/glcd.c \ ${CHIBIOS}/ext/lcd/gui.c \ ${CHIBIOS}/ext/lcd/drivers/ssd1289_lld.c \ ${CHIBIOS}/ext/lcd/drivers/s6d1121_lld.c \ - ${CHIBIOS}/ext/lcd/drivers/ads7843_lld.c + ${CHIBIOS}/ext/lcd/drivers/ads7843_lld.c \ + ${CHIBIOS}/ext/lcd/drivers/xpt2046_lld.c \ LCDINC = ${CHIBIOS}/ext/lcd \ ${CHIBIOS}/etc/lcd/drivers @@ -96,6 +96,10 @@ uint16_t tpReadY(void) { return y; } +uint16_t tpReadZ(void) { + return lld_readZ(); +} + static void tpDrawCross(uint16_t x, uint16_t y) { lcdDrawLine(x-15, y, x-2, y, 0xffff); lcdDrawLine(x+2, y, x+15, y, 0xffff); @@ -54,6 +54,17 @@ uint16_t tpReadX(void); uint16_t tpReadY(void); /* + * Description: reads-out Z value / pressure + * only available when controller supports, returns + * zero otherwise. + * + * param: none + * + * return: pressure on the touchpad + */ +uint16_t tpReadZ(void); + +/* * Description: calibration routine * * param: none |