aboutsummaryrefslogtreecommitdiffstats
path: root/touchpad.c
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-06-04 21:11:19 +0200
committerTectu <joel@unormal.org>2012-06-04 21:11:19 +0200
commitc7f2aa6188f7c638aa5dd542d40be93fbbcab35a (patch)
tree222ed1e3fefee85318fa5aff403d72cd0008ff01 /touchpad.c
parent475e990f3c6bfc4cd0e5df4b7ada6eb6fb29961c (diff)
downloaduGFX-c7f2aa6188f7c638aa5dd542d40be93fbbcab35a.tar.gz
uGFX-c7f2aa6188f7c638aa5dd542d40be93fbbcab35a.tar.bz2
uGFX-c7f2aa6188f7c638aa5dd542d40be93fbbcab35a.zip
cleanups
Diffstat (limited to 'touchpad.c')
-rw-r--r--touchpad.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/touchpad.c b/touchpad.c
index 6570a45c..87bdcd49 100644
--- a/touchpad.c
+++ b/touchpad.c
@@ -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);