Add HCD functions for KL25Z

This commit is contained in:
kkitayam
2021-11-21 16:17:50 +09:00
parent ffb257ac17
commit a4bc6075ce
2 changed files with 480 additions and 0 deletions

View File

@@ -39,7 +39,12 @@
//--------------------------------------------------------------------+
void USB0_IRQHandler(void)
{
#if TUSB_OPT_HOST_ENABLED
tuh_int_handler(0);
#endif
#if TUSB_OPT_DEVICE_ENABLED
tud_int_handler(0);
#endif
}
//--------------------------------------------------------------------+