Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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 |
--- 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; }