xypad theremin for LPC1768

Dependencies:   MODDMA mbed

Files at this revision

API Documentation at this revision

Comitter:
exopiped
Date:
Mon Mar 14 23:43:44 2016 +0000
Parent:
1:aa184d2eb2e3
Commit message:
touch screen driver glitches removed; debug statements commented out

Changed in this revision

touch.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/touch.cpp	Mon Mar 14 23:37:58 2016 +0000
+++ b/touch.cpp	Mon Mar 14 23:43:44 2016 +0000
@@ -334,10 +334,10 @@
     // 0xFFF or 0x000 is some kind of glitch
     if (*x==0xFFF && *y==0xFFF) return NIL;
     if (*x==0 && *y==0) return NIL;
-    debug_hexshort(*x);
-    debug_putch(',');
-    debug_hexshort(*y);
-    debug_crlf();
+//    debug_hexshort(*x);
+//    debug_putch(',');
+//    debug_hexshort(*y);
+//    debug_crlf();
     return 0; 
 }