Skip to content

Commit e607c3d

Browse files
authored
Merge pull request arduino#226 from hathach/fix-samd21-usb
fix incorrect USB IRQ typo for samd
2 parents d60ec0f + 6d6e5b1 commit e607c3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/arduino/TinyUSB/Adafruit_TinyUSB_SAMD.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ void USB_3_Handler (void) { tud_int_handler(0); }
4242

4343
#else
4444

45-
void USBD_IRQHandler(void) { tud_int_handler(0); }
45+
void USB_Handler(void) { tud_int_handler(0); }
4646

4747
#endif
4848
} // extern C

0 commit comments

Comments
 (0)