diff options
author | Tectu <joel@unormal.org> | 2012-06-08 00:07:43 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-08 00:07:43 +0200 |
commit | 9220a1ea3cb149b05af5d099b4e36674a1292e1d (patch) | |
tree | 946b78c13cbf1913b28c12e7e6f00a706e3b88ba /touchpad.h | |
parent | cb3292bf36bd1f06d08a1a345cfbd9bae67e941e (diff) | |
download | uGFX-9220a1ea3cb149b05af5d099b4e36674a1292e1d.tar.gz uGFX-9220a1ea3cb149b05af5d099b4e36674a1292e1d.tar.bz2 uGFX-9220a1ea3cb149b05af5d099b4e36674a1292e1d.zip |
cleanup & doc
Diffstat (limited to 'touchpad.h')
-rw-r--r-- | touchpad.h | 41 |
1 files changed, 39 insertions, 2 deletions
@@ -15,12 +15,49 @@ volatile struct cal { float yn; }; +/* + * Description: initializes touchpad (SPI) + * + * param: none + * + * return: none + */ void tpInit(void); + +/* + * Description: reads out PEN_IRQ from touchpad controller + * + * param: none + * + * return: 1 = touchpad pressed / 0 = touchpad not pressed + */ uint8_t tpIRQ(void); + +/* + * Description: reads-out X coordinate, calibrated + * + * param: none + * + * return: X coordinate, relative to screen zero-point + */ uint16_t tpReadX(void); + +/* + * Description: reads-out Y coordinate, calibrated + * + * param: none + * + * return: Y coordinate, relative to screen zero-point + */ uint16_t tpReadY(void); + +/* + * Description: calibration routine + * + * param: none + * + * return: none + */ void tpCalibrate(void); -void tpCalibrate2(void); -void tpDrawCross(uint16_t x, uint16_t y); #endif |