Driver Library for our displays
Dependents: dm_bubbles dm_calc dm_paint dm_sdcard_with_adapter ... more
Revision 5:2c60f4aafce6, committed 2014-05-22
- Comitter:
- displaymodule
- Date:
- Thu May 22 09:35:12 2014 +0000
- Parent:
- 4:92d019216e28
- Child:
- 6:fde03297017b
- Commit message:
- Removed debug prints in touch controller code which decreased speed.
Changed in this revision
DmTouch.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/DmTouch.cpp Thu May 22 09:14:49 2014 +0000 +++ b/DmTouch.cpp Thu May 22 09:35:12 2014 +0000 @@ -315,7 +315,7 @@ posX=((TP_X-_calibLowX)/_calibModifierX); posY=((TP_Y-_calibLowY)/_calibModifierY); } - printf("Raw: %5u, %5u, Calibrated: %3u, %u\n", TP_X, TP_Y, posX, posY); + //printf("Raw: %5u, %5u, Calibrated: %3u, %u\n", TP_X, TP_Y, posX, posY); //#if defined (DM_TOOLCHAIN_ARDUINO) if (posX >= 0 && posX <= _width && posY >= 0 && posY <= _height) {