diff options
-rw-r--r-- | touchpad.c | 2 | ||||
-rw-r--r-- | touchpad.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ #include "touchpad.h" #include "glcd.h" -static struct cal cal = { +volatile static struct cal cal = { 1, 1, 0, 0 }; @@ -9,7 +9,7 @@ #define SET_CS(a) (TP_PORT->BSRR = 1 << (TP_CS + (a ? 0 : 16))) -volatile struct cal { +struct cal { float xm; float ym; float xn; |