A basic graphics package for the LPC4088 Display Module.

Dependents:   lpc4088_displaymodule_demo_sphere sampleGUI sampleEmptyGUI lpc4088_displaymodule_fs_aid ... more

Fork of DMBasicGUI by EmbeddedArtists AB

Revision:
21:0038059e3a8f
Parent:
17:6e2abf107800
--- a/Application/AppTouchCalibration.cpp	Mon Mar 23 14:28:07 2015 +0100
+++ b/Application/AppTouchCalibration.cpp	Wed Oct 23 06:59:53 2019 +0000
@@ -179,7 +179,7 @@
         
         swim_put_text_centered_win(_win, "Without touch there is nothing to do. Press RESET !", 2*_disp->height()/3);
         while(1) {
-            Thread::wait(5000);
+            ThisThread::sleep_for(5000);
         }
     }
     
@@ -189,7 +189,7 @@
     while(!done) {
       // wait for a new touch signal (signal is sent from AppLauncher,
       // which listens for touch events)
-      Thread::signal_wait(0x1);
+      ThisThread::flags_wait_any(0x1);
         
       if (_touch->read(coord) == TouchPanel::TouchError_Ok) {
         if (coord.z > 0) {