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/hal/hal.h | |
| parent | b6e337bc12c041969687ee8c13dbe5045c4096f8 (diff) | |
rename hal_interrupt_* to hal_usb_int_*
Diffstat (limited to 'tinyusb/hal/hal.h')
| -rw-r--r-- | tinyusb/hal/hal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tinyusb/hal/hal.h b/tinyusb/hal/hal.h index 65b219610..f395c6d23 100644 --- a/tinyusb/hal/hal.h +++ b/tinyusb/hal/hal.h @@ -74,14 +74,14 @@ tusb_error_t hal_init(void); * \note Some MCUs such as NXP LPC43xx has multiple USB controllers. It is necessary to know which USB controller for
* those MCUs.
*/
-void hal_interrupt_enable(uint8_t coreid);
+void hal_usb_int_enable(uint8_t coreid);
/** \brief Disable USB Interrupt on a specific USB Controller
* \param[in] coreid is a zero-based index to identify USB controller's ID
* \note Some MCUs such as NXP LPC43xx has multiple USB controllers. It is necessary to know which USB controller for
* those MCUs.
*/
-void hal_interrupt_disable(uint8_t coreid);
+void hal_usb_int_disable(uint8_t coreid);
#include "hal_usb.h"
|
