From 7b2e0d06d4cd8a472a9162460f5cf8d2d263cee4 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Wed, 28 Nov 2012 22:40:23 +0100 Subject: ILI9320 landscape mode --- drivers/ginput/touch/ADS7843/ginput_lld_mouse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'drivers/ginput/touch/ADS7843/ginput_lld_mouse.c') diff --git a/drivers/ginput/touch/ADS7843/ginput_lld_mouse.c b/drivers/ginput/touch/ADS7843/ginput_lld_mouse.c index 9c1a582b..5e390399 100644 --- a/drivers/ginput/touch/ADS7843/ginput_lld_mouse.c +++ b/drivers/ginput/touch/ADS7843/ginput_lld_mouse.c @@ -119,7 +119,7 @@ void ginput_lld_mouse_get_reading(MouseReading *pt) { sampleBuf[i] = read_value(0xD1); read_value(0xD0); filter(); - lastx = (coord_t)sampleBuf[3]; + lastx = 42;//(coord_t)sampleBuf[3]; /* Get the Y value using the same process as above */ read_value(0x91); @@ -127,7 +127,7 @@ void ginput_lld_mouse_get_reading(MouseReading *pt) { sampleBuf[i] = read_value(0x91); read_value(0x90); filter(); - lasty = (coord_t)sampleBuf[3]; + lasty = 42;//(coord_t)sampleBuf[3]; // Release the bus release_bus(); -- cgit v1.2.3