USB device stack - Added support for the logo/windows key to USB keyboard.

Dependents:   randomSearch

Fork of USBDevice by mbed official

Revision:
47:a0cd9646ecd1
Parent:
29:b7a0ea455a0c
Child:
51:deafa44182d9
diff -r 378357d7e90d -r a0cd9646ecd1 USBMSD/USBMSD.cpp
--- a/USBMSD/USBMSD.cpp	Tue Mar 31 16:15:39 2015 +0100
+++ b/USBMSD/USBMSD.cpp	Wed Apr 08 07:46:23 2015 +0100
@@ -147,7 +147,7 @@
 
 
 // Called in ISR context called when a data is received
-bool USBMSD::EP2_OUT_callback() {
+bool USBMSD::EPBULK_OUT_callback() {
     uint32_t size = 0;
     uint8_t buf[MAX_PACKET_SIZE_EPBULK];
     readEP(EPBULK_OUT, buf, &size, MAX_PACKET_SIZE_EPBULK);
@@ -184,7 +184,7 @@
 }
 
 // Called in ISR context when a data has been transferred
-bool USBMSD::EP2_IN_callback() {
+bool USBMSD::EPBULK_IN_callback() {
     switch (stage) {
 
             // the device has to send data to the host