aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-06-01 12:48:26 +0200
committerTectu <joel@unormal.org>2012-06-01 12:48:26 +0200
commite38fc24c61ce56ed9034adf2d8875ec3769e686a (patch)
tree898ab1691e6472aa4a078543b9f5874730e12c6d
parenta7295f47e9ce21e17b17d9e12730fbfc15ee5340 (diff)
downloaduGFX-e38fc24c61ce56ed9034adf2d8875ec3769e686a.tar.gz
uGFX-e38fc24c61ce56ed9034adf2d8875ec3769e686a.tar.bz2
uGFX-e38fc24c61ce56ed9034adf2d8875ec3769e686a.zip
fixes
-rw-r--r--touchpad.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/touchpad.c b/touchpad.c
index fee95c44..51a9c07e 100644
--- a/touchpad.c
+++ b/touchpad.c
@@ -18,7 +18,7 @@ static uint16_t readX(void) {
uint8_t rxbuf[2];
uint16_t x;
- txbuf[0] = 0x90;
+ txbuf[0] = 0xd0;
SET_CS(0);
spiSend(&SPID1, 1, txbuf);
spiReceive(&SPID1, 2, rxbuf);
@@ -35,7 +35,7 @@ static uint16_t readY(void) {
uint8_t rxbuf[2];
uint16_t y;
- txbuf[0] = 0xd0;
+ txbuf[0] = 0x90;
SET_CS(0);
spiSend(&SPID1, 1, txbuf);
spiReceive(&SPID1, 2, rxbuf);
@@ -55,7 +55,7 @@ uint16_t tpReadX(void) {
results += readX();
}
- x = (((lcdGetWidth()-1) * (results/CONVERSIONS)) / 2048);
+ x = (((lcdGetHeight()-1) * (results/CONVERSIONS)) / 2048);
return x;
}
@@ -67,7 +67,7 @@ uint16_t tpReadY(void) {
for(i=0; i<CONVERSIONS; i++)
results += readY();
- y = (((lcdGetHeight()-1) * (results/CONVERSIONS)) / 2048);
+ y = (((lcdGetWidth()-1) * (results/CONVERSIONS)) / 2048);
return y;
}