aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-06-04 20:41:33 +0200
committerTectu <joel@unormal.org>2012-06-04 20:41:33 +0200
commit0f0f912661cf4d48703c93aa0f98e31af54a0626 (patch)
tree04efaec6c73370a935eb975522c739852c39b6cd
parent8bcc3970b876dc9f2d40d979c7070f611dbadae4 (diff)
downloaduGFX-0f0f912661cf4d48703c93aa0f98e31af54a0626.tar.gz
uGFX-0f0f912661cf4d48703c93aa0f98e31af54a0626.tar.bz2
uGFX-0f0f912661cf4d48703c93aa0f98e31af54a0626.zip
cleanup
-rw-r--r--touchpad.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/touchpad.c b/touchpad.c
index 333bfbf3..d8d93914 100644
--- a/touchpad.c
+++ b/touchpad.c
@@ -132,14 +132,5 @@ void tpCalibrate(void) {
cal.xn = (float)cross[0][0] - cal.xm * (float)points[0][0];
cal.yn = (float)cross[0][1] - cal.ym * (float)points[0][1];
-
- sprintf(buffer, "cal->xm = %d", cal.xm);
- lcdDrawString(50, 50, buffer, White, Red);
- sprintf(buffer, "cal->ym = %d", cal.ym);
- lcdDrawString(50, 70, buffer, White, Red);
- sprintf(buffer, "cal->xn = %d", cal.xn);
- lcdDrawString(50, 90, buffer, White, Red);
- sprintf(buffer, "cal->yn = %d", cal.yn);
- lcdDrawString(50, 110, buffer, White, Red);
}