提交 bd62def3 编写于 作者: F flyingcys

[bsps] fix bsp/stm32f10x/bxcan.c inline bug

上级 35e59002
...@@ -20,9 +20,6 @@ ...@@ -20,9 +20,6 @@
#endif #endif
#ifdef RT_USING_CAN #ifdef RT_USING_CAN
#ifdef __CC_ARM
#define inline __inline
#endif
#ifndef STM32F10X_CL #ifndef STM32F10X_CL
#define BX_CAN_FMRNUMBER 14 #define BX_CAN_FMRNUMBER 14
#define BX_CAN2_FMRSTART 7 #define BX_CAN2_FMRSTART 7
...@@ -401,7 +398,7 @@ static void bxcan2_hw_init(void) ...@@ -401,7 +398,7 @@ static void bxcan2_hw_init(void)
NVIC_Init(&NVIC_InitStructure); NVIC_Init(&NVIC_InitStructure);
} }
#endif #endif
static inline rt_err_t bxcan_enter_init(CAN_TypeDef *pcan) rt_inline rt_err_t bxcan_enter_init(CAN_TypeDef *pcan)
{ {
uint32_t wait_ack = 0x00000000; uint32_t wait_ack = 0x00000000;
...@@ -417,7 +414,7 @@ static inline rt_err_t bxcan_enter_init(CAN_TypeDef *pcan) ...@@ -417,7 +414,7 @@ static inline rt_err_t bxcan_enter_init(CAN_TypeDef *pcan)
} }
return RT_EOK; return RT_EOK;
} }
static inline rt_err_t bxcan_exit_init(CAN_TypeDef *pcan) rt_inline rt_err_t bxcan_exit_init(CAN_TypeDef *pcan)
{ {
uint32_t wait_ack = 0x00000000; uint32_t wait_ack = 0x00000000;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册