Commit 701fdcac authored by Damien George's avatar Damien George

nrf/drivers/usb: Add USBD_IRQHandler which calls tud_int_handler.

This is needed for TinyUSB to process USB device IRQs.

Related to #6325.
Signed-off-by: default avatarDamien George <damien@micropython.org>
parent ede6b86a
......@@ -223,4 +223,8 @@ void mp_hal_stdout_tx_strn_cooked(const char *str, mp_uint_t len) {
}
}
void USBD_IRQHandler(void) {
tud_int_handler(0);
}
#endif // MICROPY_HW_USB_CDC
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment