diff options
author | Tectu <joel@unormal.org> | 2012-06-04 16:40:38 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-04 16:40:38 +0200 |
commit | 8bcc3970b876dc9f2d40d979c7070f611dbadae4 (patch) | |
tree | a2d73eb007851b7b0f45bdfc667883682acc6f5e /touchpad.h | |
parent | 98cdf8a543be7b843e7dea7cac6c1651d80d712d (diff) | |
download | uGFX-8bcc3970b876dc9f2d40d979c7070f611dbadae4.tar.gz uGFX-8bcc3970b876dc9f2d40d979c7070f611dbadae4.tar.bz2 uGFX-8bcc3970b876dc9f2d40d979c7070f611dbadae4.zip |
made working calibration routine
Diffstat (limited to 'touchpad.h')
-rw-r--r-- | touchpad.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -9,10 +9,10 @@ #define SET_CS(a) (TP_PORT->BSRR = 1 << (TP_CS + (a ? 0 : 16))) volatile struct cal { - int16_t xm; - int16_t ym; - int16_t xn; - int16_t yn; + float xm; + float ym; + float xn; + float yn; }; void tpInit(void); |