summaryrefslogtreecommitdiff
path: root/hw/bsp
diff options
context:
space:
mode:
authorhathach <[email protected]>2022-06-03 11:32:09 +0700
committerhathach <[email protected]>2022-06-03 11:32:09 +0700
commit2571211957b28be7fd706d3cdd4209f17189788a (patch)
treec3ed51c9db6a32804c1da5b4c380ddfe92bcf1b2 /hw/bsp
parent8b9cf152a0dedda573fb3374d8c873dce4b883d1 (diff)
remove static port defined for device/host
Diffstat (limited to 'hw/bsp')
-rw-r--r--hw/bsp/lpc18/family.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/bsp/lpc18/family.c b/hw/bsp/lpc18/family.c
index a59b6e89d..0fc788873 100644
--- a/hw/bsp/lpc18/family.c
+++ b/hw/bsp/lpc18/family.c
@@ -96,8 +96,8 @@ void board_init(void)
SysTick_Config(SystemCoreClock / 1000);
#elif CFG_TUSB_OS == OPT_OS_FREERTOS
// If freeRTOS is used, IRQ priority is limit by max syscall ( smaller is higher )
- NVIC_SetPriority(USB0_IRQn, configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY );
- NVIC_SetPriority(USB1_IRQn, configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY );
+ NVIC_SetPriority(USB0_IRQn, configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY);
+ NVIC_SetPriority(USB1_IRQn, configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY);
#endif
Chip_GPIO_Init(LPC_GPIO_PORT);