[bsp] change macro so that CAN IRQ do not interfere USB IRQ in stm32f10x

This commit is contained in:
Spencer Moss 2017-08-14 00:36:18 +08:00
parent a07c450808
commit b60712c29c
1 changed files with 6 additions and 2 deletions

View File

@ -145,20 +145,24 @@ void EXTI4_IRQHandler(void)
}
#endif /* RT_USING_LWIP */
#if (defined (RT_USING_CAN)) && !(defined (STM32F10X_CL))
#ifndef STM32F10X_CL
/* CAN and USB IRQ for stm32 none connectivity line devices
* change to USB IRQ, if you want to use USB
*/
void USB_LP_CAN1_RX0_IRQHandler(void)
{
#ifdef RT_USING_CAN
CAN1_RX0_IRQHandler();
#endif
}
void USB_HP_CAN1_TX_IRQHandler(void)
{
#ifdef RT_USING_CAN
CAN1_TX_IRQHandler();
#endif
}
#endif
/**
* @}
*/