diff options
author | Tectu <joel@unormal.org> | 2012-06-04 21:11:19 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-04 21:11:19 +0200 |
commit | c7f2aa6188f7c638aa5dd542d40be93fbbcab35a (patch) | |
tree | 222ed1e3fefee85318fa5aff403d72cd0008ff01 /touchpad.c | |
parent | 475e990f3c6bfc4cd0e5df4b7ada6eb6fb29961c (diff) | |
download | uGFX-c7f2aa6188f7c638aa5dd542d40be93fbbcab35a.tar.gz uGFX-c7f2aa6188f7c638aa5dd542d40be93fbbcab35a.tar.bz2 uGFX-c7f2aa6188f7c638aa5dd542d40be93fbbcab35a.zip |
cleanups
Diffstat (limited to 'touchpad.c')
-rw-r--r-- | touchpad.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -3,7 +3,6 @@ static struct cal cal; -static void spicb(SPIDriver *spip); static const SPIConfig spicfg = { NULL, GPIOC, @@ -49,7 +48,7 @@ static __inline uint16_t readY(void) { return y; } -uint8_t __inline tpIRQ(void) { +uint8_t tpIRQ(void) { return (!palReadPad(TP_PORT, TP_IRQ)); } @@ -112,7 +111,6 @@ void tpCalibrate(void) { uint16_t cross[2][2] = {{40,40}, {200, 280}}; uint16_t points[2][2]; uint8_t i; - char buffer[32]; lcdClear(Red); lcdDrawString(40, 10, "Touchpad Calibration", White, Red); |