rename tuh_isr/hcd_isr to tuh_int_handler/hcd_int_handler

This commit is contained in:
hathach
2020-09-03 13:12:09 +07:00
parent 1cee2da7b9
commit 1d83ad0ebb
18 changed files with 30 additions and 32 deletions
+2 -2
View File
@@ -33,7 +33,7 @@
void USB0_IRQHandler(void)
{
#if CFG_TUSB_RHPORT0_MODE & OPT_MODE_HOST
tuh_isr(0);
tuh_int_handler(0);
#endif
#if CFG_TUSB_RHPORT0_MODE & OPT_MODE_DEVICE
@@ -44,7 +44,7 @@ void USB0_IRQHandler(void)
void USB1_IRQHandler(void)
{
#if CFG_TUSB_RHPORT1_MODE & OPT_MODE_HOST
tuh_isr(1);
tuh_int_handler(1);
#endif
#if CFG_TUSB_RHPORT1_MODE & OPT_MODE_DEVICE