aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-06-01 12:44:48 +0200
committerTectu <joel@unormal.org>2012-06-01 12:44:48 +0200
commita7295f47e9ce21e17b17d9e12730fbfc15ee5340 (patch)
tree4ca90d59a18b3d13225498cc5e39173e0cd67a16
parent5e37443a6f76b120925f1d2f8c0d6d83ab72b22a (diff)
downloaduGFX-a7295f47e9ce21e17b17d9e12730fbfc15ee5340.tar.gz
uGFX-a7295f47e9ce21e17b17d9e12730fbfc15ee5340.tar.bz2
uGFX-a7295f47e9ce21e17b17d9e12730fbfc15ee5340.zip
fix
-rw-r--r--glcd.c10
-rw-r--r--touchpad.c32
-rw-r--r--touchpad.h2
3 files changed, 31 insertions, 13 deletions
diff --git a/glcd.c b/glcd.c
index acf779df..6e511a23 100644
--- a/glcd.c
+++ b/glcd.c
@@ -69,17 +69,11 @@ static __inline uint16_t lcdReadReg(uint16_t lcdReg) {
}
uint16_t lcdGetHeight(void) {
- if(PORTRAIT)
- return lcd_height;
- else if(LANDSCAPE)
- return lcd_width;
+ return lcd_height;
}
uint16_t lcdGetWidth(void) {
- if(PORTRAIT)
- return lcd_width;
- else if(LANDSCAPE)
- return lcd_height;
+ return lcd_width;
}
static void lcdSetCursor(uint16_t x, uint16_t y) {
diff --git a/touchpad.c b/touchpad.c
index d34ea308..fee95c44 100644
--- a/touchpad.c
+++ b/touchpad.c
@@ -13,7 +13,7 @@ void tpInit(void) {
spiStart(&SPID1, &spicfg);
}
-uint16_t tpReadX(void) {
+static uint16_t readX(void) {
uint8_t txbuf[1];
uint8_t rxbuf[2];
uint16_t x;
@@ -27,12 +27,10 @@ uint16_t tpReadX(void) {
x = rxbuf[0] << 4;
x |= rxbuf[1] >> 4;
- x = (((lcdGetWidth()-1) * x)/2048);
-
return x;
}
-uint16_t tpReadY(void) {
+static uint16_t readY(void) {
uint8_t txbuf[1];
uint8_t rxbuf[2];
uint16_t y;
@@ -46,8 +44,32 @@ uint16_t tpReadY(void) {
y = rxbuf[0] << 4;
y |= rxbuf[1] >> 4;
- y = (((lcdGetHeight()-1) * y)/2048);
+ return y;
+}
+
+uint16_t tpReadX(void) {
+ uint32_t results;
+ uint16_t i, x;
+
+ for(i=0; i<CONVERSIONS; i++) {
+ results += readX();
+ }
+
+ x = (((lcdGetWidth()-1) * (results/CONVERSIONS)) / 2048);
+
+ return x;
+}
+
+uint16_t tpReadY(void) {
+ uint32_t results;
+ uint16_t i, y;
+
+ for(i=0; i<CONVERSIONS; i++)
+ results += readY();
+
+ y = (((lcdGetHeight()-1) * (results/CONVERSIONS)) / 2048);
return y;
}
+
diff --git a/touchpad.h b/touchpad.h
index 942ba110..0dc6d7fc 100644
--- a/touchpad.h
+++ b/touchpad.h
@@ -4,6 +4,8 @@
#include "ch.h"
#include "hal.h"
+#define CONVERSIONS 3
+
#define SET_CS(a) (TP_PORT->BSRR = 1 << (TP_CS + (a ? 0 : 16)))
void tpInit(void);