提交 b60712c2 编写于 作者: S Spencer Moss

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

上级 a07c4508
......@@ -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
/**
* @}
*/
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册