diff options
| author | hathach <[email protected]> | 2020-04-06 17:04:49 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2020-04-06 17:04:49 +0700 |
| commit | dc4bf02dcb8198c9647e13bc0f5b4e5fcdeef618 (patch) | |
| tree | ccb10f184498635124375c8669b14e51fb31c6c1 /hw/bsp/itsybitsy_m4 | |
| parent | 2d6d298302be2d39374c36e7889341dee944d542 (diff) | |
mass rename tud_isr to tud_irq_handler
Diffstat (limited to 'hw/bsp/itsybitsy_m4')
| -rw-r--r-- | hw/bsp/itsybitsy_m4/itsybitsy_m4.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/bsp/itsybitsy_m4/itsybitsy_m4.c b/hw/bsp/itsybitsy_m4/itsybitsy_m4.c index 0b9cc89e0..3ae9565c9 100644 --- a/hw/bsp/itsybitsy_m4/itsybitsy_m4.c +++ b/hw/bsp/itsybitsy_m4/itsybitsy_m4.c @@ -37,22 +37,22 @@ //--------------------------------------------------------------------+ void USB_0_Handler (void) { - tud_isr(0); + tud_irq_handler(0); } void USB_1_Handler (void) { - tud_isr(0); + tud_irq_handler(0); } void USB_2_Handler (void) { - tud_isr(0); + tud_irq_handler(0); } void USB_3_Handler (void) { - tud_isr(0); + tud_irq_handler(0); } //--------------------------------------------------------------------+ |
