EmbedEd
/
mbed_theremin
xypad theremin for LPC1768
Revision 2:c5eeaf1c8e69, committed 2016-03-14
- 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 |
diff -r aa184d2eb2e3 -r c5eeaf1c8e69 touch.cpp --- 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; }