aboutsummaryrefslogtreecommitdiffstats
path: root/halext/include/touchpad.h
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-08-09 02:03:26 +0200
committerTectu <joel@unormal.org>2012-08-09 02:03:26 +0200
commit19bb3b15dd368b019cdab1b12565156b84f9d32a (patch)
treebcb183d368992ccd8795fb6c19bf9dc232e5caf9 /halext/include/touchpad.h
parent79c053567816521b601e44981bf3af5b0e40f752 (diff)
downloaduGFX-19bb3b15dd368b019cdab1b12565156b84f9d32a.tar.gz
uGFX-19bb3b15dd368b019cdab1b12565156b84f9d32a.tar.bz2
uGFX-19bb3b15dd368b019cdab1b12565156b84f9d32a.zip
tpInit()
Diffstat (limited to 'halext/include/touchpad.h')
-rw-r--r--halext/include/touchpad.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/halext/include/touchpad.h b/halext/include/touchpad.h
index 12b462fd..c6e44b55 100644
--- a/halext/include/touchpad.h
+++ b/halext/include/touchpad.h
@@ -60,21 +60,17 @@ extern "C" {
uint16_t tpReadY(void);
#if TOUCHPAD_PRESSURE
-
uint16_t tpReadZ(void);
-
#endif
#else
- #define tpInit(tp) tp_lld_init()
+ #define tpInit(tp) tp_lld_init(tp)
#define tpReadX() tp_lld_read_x()
#define tpReadY() tp_lld_read_y()
#if TOUCHPAD_PRESSURE
-
#define tpReadZ() tp_lld_read_z()
-
#endif
#endif