diff options
author | Tectu <joel@unormal.org> | 2012-06-01 12:48:26 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-01 12:48:26 +0200 |
commit | e38fc24c61ce56ed9034adf2d8875ec3769e686a (patch) | |
tree | 898ab1691e6472aa4a078543b9f5874730e12c6d | |
parent | a7295f47e9ce21e17b17d9e12730fbfc15ee5340 (diff) | |
download | uGFX-e38fc24c61ce56ed9034adf2d8875ec3769e686a.tar.gz uGFX-e38fc24c61ce56ed9034adf2d8875ec3769e686a.tar.bz2 uGFX-e38fc24c61ce56ed9034adf2d8875ec3769e686a.zip |
fixes
-rw-r--r-- | touchpad.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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; } |