Adaptation of the official mbed USBHost repository to work with the LPC4088 Display Module

Dependents:   DMSupport DMSupport DMSupport DMSupport

Fork of DM_USBHost by EmbeddedArtists AB

Revision:
33:819bbf04163b
Parent:
32:f2d129436056
--- a/USBHost/USBHost.cpp	Wed Oct 23 06:58:55 2019 +0000
+++ b/USBHost/USBHost.cpp	Mon Nov 04 14:30:07 2019 +0000
@@ -188,7 +188,7 @@
                     } while(0);
                     
                     if (listener != 0) {
-                      osSignalSet(listener, listenerSignal);
+                      listener->set(listenerSignal);
                     }
 
                     break;
@@ -216,7 +216,7 @@
                     } while(0);
 
                     if (listener != 0) {
-                      osSignalSet(listener, listenerSignal);
+                      listener->set(listenerSignal);
                     }
                     
                     break;
@@ -361,6 +361,7 @@
         instHost = new USBHost();
         instHost->init();
     }
+
     return instHost;
 }