Skip to content

Commit

Permalink
Merge pull request #226 from hathach/fix-samd21-usb
Browse files Browse the repository at this point in the history
fix incorrect USB IRQ typo for samd
  • Loading branch information
hathach authored May 4, 2020
2 parents d60ec0f + 6d6e5b1 commit e607c3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cores/arduino/TinyUSB/Adafruit_TinyUSB_SAMD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ void USB_3_Handler (void) { tud_int_handler(0); }

#else

void USBD_IRQHandler(void) { tud_int_handler(0); }
void USB_Handler(void) { tud_int_handler(0); }

#endif
} // extern C
Expand Down

0 comments on commit e607c3d

Please sign in to comment.