Commit 8db26bd9 authored by 陈家乐's avatar 陈家乐

🐞 fix:修改变量名

parent 1f9e5e81
...@@ -317,13 +317,12 @@ void Can_QuickTimer_Init(void) ...@@ -317,13 +317,12 @@ void Can_QuickTimer_Init(void)
* @param deltaTime 调用时间 单位ms 10MS调用 * @param deltaTime 调用时间 单位ms 10MS调用
*/ */
uint16_t cjl_cantest = 0; uint16_t CanRxInitflag = 0;
uint16_t cjl_canflag = 0;
void Can_BusOff_Recover(uint8_t deltaTime) void Can_BusOff_Recover(uint8_t deltaTime)
{ {
if (get_can_busoff(CAN_CH_0) == 2) if (get_can_busoff(CAN_CH_0) == 2)
{ {
cjl_canflag = 1; CanRxInitflag = 1;
CAN_TX_Count_Init(); CAN_TX_Count_Init();
if (RSCAN0Busoff.Status == RSCAN0_BUS_STABLE) if (RSCAN0Busoff.Status == RSCAN0_BUS_STABLE)
{ {
...@@ -379,9 +378,9 @@ void Can_BusOff_Recover(uint8_t deltaTime) ...@@ -379,9 +378,9 @@ void Can_BusOff_Recover(uint8_t deltaTime)
RSCAN0Busoff.Timer = 0; RSCAN0Busoff.Timer = 0;
RSCAN0Busoff.Cnt = 0; RSCAN0Busoff.Cnt = 0;
} }
if(cjl_canflag == 1) if(CanRxInitflag == 1)
{ {
cjl_canflag = 0; CanRxInitflag = 0;
Can_RX_Apply_Buff(); Can_RX_Apply_Buff();
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment