rename coreid to port

This commit is contained in:
hathach
2018-03-09 14:29:23 +07:00
parent b608f8895a
commit eaaebc2b88
18 changed files with 265 additions and 265 deletions

View File

@@ -41,15 +41,15 @@
#if TUSB_CFG_MCU == MCU_LPC11UXX
void hal_usb_int_enable(uint8_t coreid)
void hal_usb_int_enable(uint8_t port)
{
(void) coreid; // discard compiler's warning
(void) port; // discard compiler's warning
NVIC_EnableIRQ(USB_IRQn);
}
void hal_usb_int_disable(uint8_t coreid)
void hal_usb_int_disable(uint8_t port)
{
(void) coreid; // discard compiler's warning
(void) port; // discard compiler's warning
NVIC_DisableIRQ(USB_IRQn);
}