diff options
author | Tectu <joel@unormal.org> | 2012-07-10 03:14:24 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-07-10 03:14:24 +0200 |
commit | e481e3a23c3f0b54463afa532ce04bd898d66f8a (patch) | |
tree | 95b1a29afa1d405c539f3048870386b5b7983f07 | |
parent | dcf9a88783282c84caf1a0747e0c8bf40ade6e5b (diff) | |
download | uGFX-e481e3a23c3f0b54463afa532ce04bd898d66f8a.tar.gz uGFX-e481e3a23c3f0b54463afa532ce04bd898d66f8a.tar.bz2 uGFX-e481e3a23c3f0b54463afa532ce04bd898d66f8a.zip |
touchpad fix
-rw-r--r-- | touchpad.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ static __inline uint16_t readY(void) { } uint8_t tpIRQ(void) { - return (!palReadPad(TP_PORT, TP_IRQ)); + return (!palReadPad(TP_IRQ_PORT, TP_IRQ)); } static uint16_t tpReadRealX(void) { |