Modified version of the DmTftLibrary, optimized for the LPC4088 Experiment Base Board

Dependents:   lpc4088_ebb_dm_calc lpc4088_ebb_dm_bubbles

Fork of DmTftLibrary by Display Module

Files at this revision

API Documentation at this revision

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) {