diff options
| -rw-r--r-- | os/hal/ports/STM32/LLD/OTGv1/usb_lld.c | 7 | ||||
| -rw-r--r-- | readme.txt | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c b/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c index 2a5ad8493..33f3b43c4 100644 --- a/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c +++ b/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c @@ -588,11 +588,16 @@ static void usb_lld_serve_interrupt(USBDriver *usbp) { /* Clear the Remote Wake-up Signaling.*/
otgp->DCTL |= DCTL_RWUSIG;
+
+ /* Signaling the wakeup event.*/
+ _usb_isr_invoke_event_cb(usbp, USB_EVENT_WAKEUP);
}
/* Suspend handling.*/
if (sts & GINTSTS_USBSUSP) {
- /* TODO: Implement suspend mode.*/
+
+ /* Signaling the suspend event.*/
+ _usb_isr_invoke_event_cb(usbp, USB_EVENT_SUSPEND);
}
/* Reset interrupt handling.*/
diff --git a/readme.txt b/readme.txt index 7c585d8f8..f7765b938 100644 --- a/readme.txt +++ b/readme.txt @@ -73,6 +73,7 @@ *****************************************************************************
*** 3.1.0 ***
+- HAL: Added wake-up and suspend events to the STM32 OTGv1 driver.
- HAL: STM32 USB/OTG buffers and queues do not more require to be aligned in
position and size.
- VAR: Improved GCC rules.ld, now it is possible to assign the heap to any
|
