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:
28:a55c5a98d5e9
Parent:
24:868cbfe611a7
--- a/USBHostHID/USBHostMouse.h	Tue Dec 02 15:16:39 2014 +0000
+++ b/USBHostHID/USBHostMouse.h	Wed Dec 03 13:32:37 2014 +0000
@@ -33,6 +33,7 @@
     * Constructor
     */
     USBHostMouse();
+    virtual ~USBHostMouse();
 
     /**
      * Try to connect a mouse device
@@ -113,7 +114,7 @@
     USBHost * host;
     USBDeviceConnected * dev;
     USBEndpoint * int_in;
-    uint8_t report[4];
+    uint8_t* report;
 
     bool dev_connected;
     bool mouse_device_found;