diff options
| author | hathach <[email protected]> | 2018-03-06 17:38:35 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-03-06 17:38:35 +0700 |
| commit | fce85875c49a7d18115c4f0c2cf91d7f8e5df9d9 (patch) | |
| tree | 7a84dcdedfd27e7f7384333250ddf7522801c19e /tinyusb/tusb.c | |
| parent | 98f12c9833b4867cad46ea80ca2525d26fd6b075 (diff) | |
remove tusb_isr(), rename hal_hcd_isr() and hal_dcd_isr()
Diffstat (limited to 'tinyusb/tusb.c')
| -rw-r--r-- | tinyusb/tusb.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/tinyusb/tusb.c b/tinyusb/tusb.c index 156aecee5..0e54b4206 100644 --- a/tinyusb/tusb.c +++ b/tinyusb/tusb.c @@ -63,23 +63,6 @@ tusb_error_t tusb_init(void) return TUSB_ERROR_NONE;
}
-/** \ingroup group_application_api
- * \brief USB interrupt handler
- * \param[in] coreid Controller ID where the interrupt happened
- * \note This function must be called by HAL layer or Application for the stack to manage USB events/transfers.
- */
-void tusb_isr(uint8_t coreid)
-{
-#if MODE_HOST_SUPPORTED
- hcd_isr(coreid);
-#endif
-
-#if MODE_DEVICE_SUPPORTED
- dcd_isr(coreid);
-#endif
-
-}
-
#if TUSB_CFG_OS == TUSB_OS_NONE
void tusb_task_runner(void)
{
|
