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

Dependents:   randomSearch

Fork of USBDevice by mbed official

Revision:
52:fb344268a308
Parent:
45:0f216c4e75e5
Child:
53:5534733abe31
--- a/USBDevice/USBHAL_STM32F4.cpp	Thu Apr 23 08:45:28 2015 +0100
+++ b/USBDevice/USBHAL_STM32F4.cpp	Thu Apr 30 13:01:04 2015 +0100
@@ -307,7 +307,13 @@
 
 
 void USBHAL::usbisr(void) {
+    if (OTG_FS->GREGS.GINTSTS & (1 << 11)) { // USB Suspend
+        suspendStateChanged(1);
+    };
+
     if (OTG_FS->GREGS.GINTSTS & (1 << 12)) { // USB Reset
+        suspendStateChanged(0);
+
         // Set SNAK bits
         OTG_FS->OUTEP_REGS[0].DOEPCTL |= (1 << 27);
         OTG_FS->OUTEP_REGS[1].DOEPCTL |= (1 << 27);