diff options
author | Tectu <joel@unormal.org> | 2012-06-04 00:15:38 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-04 00:15:38 +0200 |
commit | e292bab1576ba122e2c3615c30a929b40f5ebfb1 (patch) | |
tree | 2f7e2179909ee734d59cdd90ca1729ed4f73e792 /touchpad.h | |
parent | 181ce2153097d40b6e6945e6120943896c0db00b (diff) | |
download | uGFX-e292bab1576ba122e2c3615c30a929b40f5ebfb1.tar.gz uGFX-e292bab1576ba122e2c3615c30a929b40f5ebfb1.tar.bz2 uGFX-e292bab1576ba122e2c3615c30a929b40f5ebfb1.zip |
added tpIRQ()
Diffstat (limited to 'touchpad.h')
-rw-r--r-- | touchpad.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -9,10 +9,9 @@ #define SET_CS(a) (TP_PORT->BSRR = 1 << (TP_CS + (a ? 0 : 16))) void tpInit(void); -void tpWriteData(uint8_t data); -void tpDrawCross(uint16_t x, uint16_t y); -uint16_t tpReadData(void); +uint8_t tpIRQ(void); uint16_t tpReadX(void); uint16_t tpReadY(void); +void tpDrawCross(uint16_t x, uint16_t y); #endif |