Merge remote-tracking branch 'origin/develop' into xap

This commit is contained in:
QMK Bot 2024-12-15 17:43:17 +00:00
commit d5451bd909

View File

@ -329,18 +329,10 @@ static bool usb_requests_hook_cb(USBDriver *usbp) {
return false;
}
static __attribute__((unused)) void dummy_cb(USBDriver *usbp) {
(void)usbp;
}
static const USBConfig usbcfg = {
usb_event_cb, /* USB events callback */
usb_get_descriptor_cb, /* Device GET_DESCRIPTOR request callback */
usb_requests_hook_cb, /* Requests hook callback */
#if STM32_USB_USE_OTG1 == TRUE || STM32_USB_USE_OTG2 == TRUE
dummy_cb, /* Workaround for OTG Peripherals not servicing new interrupts
after resuming from suspend. */
#endif
};
void init_usb_driver(USBDriver *usbp) {