diff options
| author | hathach <[email protected]> | 2018-03-02 15:28:40 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-03-02 15:28:40 +0700 |
| commit | dc12e55c568a182ac95e4e7594e0059c1b8f7f4b (patch) | |
| tree | 5f4dc1d459c081ae6bf62ea781834d86f1f9d042 /tinyusb/tusb.c | |
| parent | b6e337bc12c041969687ee8c13dbe5045c4096f8 (diff) | |
rename hal_interrupt_* to hal_usb_int_*
Diffstat (limited to 'tinyusb/tusb.c')
| -rw-r--r-- | tinyusb/tusb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tinyusb/tusb.c b/tinyusb/tusb.c index 15aa1fae9..7adb5098c 100644 --- a/tinyusb/tusb.c +++ b/tinyusb/tusb.c @@ -53,11 +53,11 @@ tusb_error_t tusb_init(void) #endif
#if (TUSB_CFG_CONTROLLER_0_MODE)
- hal_interrupt_enable(0);
+ hal_usb_int_enable(0);
#endif
#if (TUSB_CFG_CONTROLLER_1_MODE)
- hal_interrupt_enable(1);
+ hal_usb_int_enable(1);
#endif
return TUSB_ERROR_NONE;
|
