A board support package for the LPC4088 Display Module.

Dependencies:   DM_HttpServer DM_USBHost

Dependents:   lpc4088_displaymodule_emwin lpc4088_displaymodule_demo_sphere sampleGUI sampleEmptyGUI ... more

Fork of DMSupport by EmbeddedArtists AB

Revision:
23:6afd6a716e80
Parent:
22:1a58a518435c
Child:
24:9a677afc86f1
--- a/Display/BiosTouch.cpp	Fri Jan 16 11:13:39 2015 +0100
+++ b/Display/BiosTouch.cpp	Fri Jan 16 11:15:57 2015 +0100
@@ -254,7 +254,6 @@
   if (!_initialized) {
       err = TouchError_NoInit;
   } else {
-    //err = (TouchError)_bios->touchRead(_biosData, &coord, 1);
     err = _handler->read(&coord, 1);
   }      
   return err;
@@ -266,7 +265,6 @@
   if (!_initialized) {
       err = TouchError_NoInit;
   } else {
-    //err = (TouchError)_bios->touchRead(_biosData, coord, num);
     err = _handler->read(coord, num);
   }      
   return err;