Takuya Urakawa / F401RE-USBHost

Dependencies:   FATFileSystem

Dependents:   F401RE-USBHostMIDI_RecieveExample

Fork of F401RE-USBHost by Norimasa Okamoto

Revision:
3:a3872f7593e2
Parent:
2:0cdac6bcc534
Child:
4:21d651ad6987
--- a/USBHostMouse.h	Thu Jan 23 08:32:54 2014 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-// Simple USBHost Mouse for FRDM-KL46Z
-#include "USBHost.h"
-
-class USBHostMouse {
-public:
-    USBHostMouse() {
-        host = USBHost::getHostInst();
-    }
-    int readReport(uint8_t* data) {
-        return host->InterruptRead(data, 4);
-    }
-
-private:
-    USBHost * host;
-};
-