2012-06-01 10:33:08 +02:00
|
|
|
#include "touchpad.h"
|
2012-06-01 11:46:30 +02:00
|
|
|
#include "glcd.h"
|
2012-06-01 10:33:08 +02:00
|
|
|
|
2012-06-11 14:34:17 +02:00
|
|
|
volatile static struct cal cal = {
|
2012-06-08 00:10:57 +02:00
|
|
|
1, 1, 0, 0
|
|
|
|
};
|
2012-06-03 17:52:02 +02:00
|
|
|
|
2012-06-01 10:33:08 +02:00
|
|
|
static const SPIConfig spicfg = {
|
|
|
|
NULL,
|
|
|
|
GPIOC,
|
|
|
|
TP_CS,
|
|
|
|
SPI_CR1_SPE | SPI_CR1_BR_2 | SPI_CR1_BR_1 | SPI_CR1_BR_0,
|
|
|
|
};
|
|
|
|
|
2012-06-11 13:07:44 +02:00
|
|
|
void tpInit(SPIDriver *spip) {
|
|
|
|
spiStart(spip, &spicfg);
|
2012-06-01 10:33:08 +02:00
|
|
|
}
|
|
|
|
|
2012-06-04 21:11:19 +02:00
|
|
|
uint8_t tpIRQ(void) {
|
2012-07-10 03:14:24 +02:00
|
|
|
return (!palReadPad(TP_IRQ_PORT, TP_IRQ));
|
2012-06-03 17:52:02 +02:00
|
|
|
}
|
|
|
|
|
2012-06-07 23:57:15 +02:00
|
|
|
static uint16_t tpReadRealX(void) {
|
2012-06-03 17:52:02 +02:00
|
|
|
uint32_t results = 0;
|
2012-06-01 12:44:48 +02:00
|
|
|
uint16_t i, x;
|
|
|
|
|
|
|
|
for(i=0; i<CONVERSIONS; i++) {
|
2012-07-22 22:21:19 +02:00
|
|
|
lld_tpReadX();
|
|
|
|
results += lld_tpReadX();
|
2012-06-01 12:44:48 +02:00
|
|
|
}
|
|
|
|
|
2012-06-07 01:08:12 +02:00
|
|
|
x = (((SCREEN_WIDTH-1) * (results/CONVERSIONS)) / 2048);
|
2012-06-01 12:44:48 +02:00
|
|
|
|
2012-06-04 09:06:55 +02:00
|
|
|
return x;
|
2012-06-01 12:44:48 +02:00
|
|
|
}
|
|
|
|
|
2012-06-07 23:57:15 +02:00
|
|
|
static uint16_t tpReadRealY(void) {
|
2012-06-03 17:52:02 +02:00
|
|
|
uint32_t results = 0;
|
2012-06-01 12:44:48 +02:00
|
|
|
uint16_t i, y;
|
|
|
|
|
2012-06-01 13:50:42 +02:00
|
|
|
for(i=0; i<CONVERSIONS; i++) {
|
2012-07-22 22:21:19 +02:00
|
|
|
lld_tpReadY();
|
|
|
|
results += lld_tpReadY();
|
2012-06-01 13:50:42 +02:00
|
|
|
}
|
2012-06-01 12:44:48 +02:00
|
|
|
|
2012-06-07 01:08:12 +02:00
|
|
|
y = (((SCREEN_HEIGHT-1) * (results/CONVERSIONS)) / 2048);
|
2012-06-01 11:46:30 +02:00
|
|
|
|
2012-06-04 09:06:55 +02:00
|
|
|
return y;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t tpReadX(void) {
|
2012-06-07 01:08:12 +02:00
|
|
|
uint16_t x, y;
|
|
|
|
|
|
|
|
x = cal.xm * tpReadRealX() + cal.xn;
|
|
|
|
y = cal.ym * tpReadRealY() + cal.yn;
|
|
|
|
|
|
|
|
switch(lcdGetOrientation()) {
|
|
|
|
case portrait:
|
|
|
|
return x;
|
|
|
|
case landscape:
|
|
|
|
return SCREEN_HEIGHT - y;
|
|
|
|
case portraitInv:
|
|
|
|
return SCREEN_WIDTH - x;
|
|
|
|
case landscapeInv:
|
|
|
|
return y;
|
|
|
|
}
|
2012-06-11 12:45:20 +02:00
|
|
|
|
|
|
|
return x;
|
2012-06-04 09:06:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t tpReadY(void) {
|
2012-06-07 01:08:12 +02:00
|
|
|
uint16_t x, y;
|
|
|
|
|
|
|
|
x = cal.xm * tpReadRealX() + cal.xn;
|
|
|
|
y = cal.ym * tpReadRealY() + cal.yn;
|
|
|
|
|
|
|
|
switch(lcdGetOrientation()) {
|
|
|
|
case portrait:
|
|
|
|
return y;
|
|
|
|
case landscape:
|
|
|
|
return x;
|
|
|
|
case portraitInv:
|
|
|
|
return SCREEN_HEIGHT - y;
|
|
|
|
case landscapeInv:
|
|
|
|
return SCREEN_WIDTH - x;
|
|
|
|
}
|
2012-06-11 12:45:20 +02:00
|
|
|
|
|
|
|
return y;
|
2012-06-03 17:52:02 +02:00
|
|
|
}
|
|
|
|
|
2012-06-15 10:18:52 +02:00
|
|
|
uint16_t tpReadZ(void) {
|
2012-07-22 22:21:19 +02:00
|
|
|
return lld_tpReadZ();
|
2012-06-15 10:18:52 +02:00
|
|
|
}
|
|
|
|
|
2012-06-08 00:07:43 +02:00
|
|
|
static void tpDrawCross(uint16_t x, uint16_t y) {
|
2012-06-04 21:04:18 +02:00
|
|
|
lcdDrawLine(x-15, y, x-2, y, 0xffff);
|
|
|
|
lcdDrawLine(x+2, y, x+15, y, 0xffff);
|
|
|
|
lcdDrawLine(x, y-15, x, y-2, 0xffff);
|
|
|
|
lcdDrawLine(x, y+2, x, y+15, 0xffff);
|
2012-06-03 17:52:02 +02:00
|
|
|
|
2012-06-11 12:43:52 +02:00
|
|
|
lcdDrawLine(x-15, y+15, x-7, y+15, RGB565CONVERT(184,158,131));
|
|
|
|
lcdDrawLine(x-15, y+7, x-15, y+15, RGB565CONVERT(184,158,131));
|
2012-06-03 17:52:02 +02:00
|
|
|
|
2012-06-11 12:43:52 +02:00
|
|
|
lcdDrawLine(x-15, y-15, x-7, y-15, RGB565CONVERT(184,158,131));
|
|
|
|
lcdDrawLine(x-15, y-7, x-15, y-15, RGB565CONVERT(184,158,131));
|
2012-06-03 17:52:02 +02:00
|
|
|
|
2012-06-11 12:43:52 +02:00
|
|
|
lcdDrawLine(x+7, y+15, x+15, y+15, RGB565CONVERT(184,158,131));
|
|
|
|
lcdDrawLine(x+15, y+7, x+15, y+15, RGB565CONVERT(184,158,131));
|
2012-06-03 17:52:02 +02:00
|
|
|
|
2012-06-11 12:43:52 +02:00
|
|
|
lcdDrawLine(x+7, y-15, x+15, y-15, RGB565CONVERT(184,158,131));
|
|
|
|
lcdDrawLine(x+15, y-15, x+15, y-7, RGB565CONVERT(184,158,131));
|
2012-06-01 10:33:08 +02:00
|
|
|
}
|
|
|
|
|
2012-06-03 17:52:02 +02:00
|
|
|
void tpCalibrate(void) {
|
2012-06-04 21:04:18 +02:00
|
|
|
uint16_t cross[2][2] = {{40,40}, {200, 280}};
|
|
|
|
uint16_t points[2][2];
|
2012-06-04 09:06:55 +02:00
|
|
|
uint8_t i;
|
|
|
|
|
2012-06-07 01:08:12 +02:00
|
|
|
lcdSetOrientation(portrait);
|
2012-06-04 09:06:55 +02:00
|
|
|
lcdClear(Red);
|
2012-06-25 18:51:35 +01:00
|
|
|
/* Abhishek: need to specify a font to use here, should probably make sure it exists somehow */
|
|
|
|
lcdDrawString(40, 10, "Touchpad Calibration", font_Larger, White, Red, solid);
|
2012-06-04 09:06:55 +02:00
|
|
|
|
2012-07-09 00:13:37 +02:00
|
|
|
for(i = 0; i < 2; i++) {
|
2012-06-04 09:06:55 +02:00
|
|
|
tpDrawCross(cross[i][0], cross[i][1]);
|
|
|
|
while(!tpIRQ());
|
|
|
|
points[i][0] = tpReadRealX();
|
|
|
|
points[i][1] = tpReadRealY();
|
|
|
|
while(tpIRQ());
|
|
|
|
lcdFillArea(cross[i][0]-15, cross[i][1]-15, cross[i][0]+16, cross[i][1]+16, Red);
|
|
|
|
}
|
|
|
|
|
2012-06-04 16:40:38 +02:00
|
|
|
cal.xm = ((float)cross[1][0] - (float)cross[0][0]) / ((float)points[1][0] - (float)points[0][0]);
|
|
|
|
cal.ym = ((float)cross[1][1] - (float)cross[0][1]) / ((float)points[1][1] - (float)points[0][1]);
|
2012-06-04 09:06:55 +02:00
|
|
|
|
2012-06-04 16:40:38 +02:00
|
|
|
cal.xn = (float)cross[0][0] - cal.xm * (float)points[0][0];
|
|
|
|
cal.yn = (float)cross[0][1] - cal.ym * (float)points[0][1];
|
2012-07-10 02:51:29 +02:00
|
|
|
|
|
|
|
lcdSetWindow(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);
|
2012-06-04 09:06:55 +02:00
|
|
|
}
|
|
|
|
|