Commit 2c7d7992 authored by hu's avatar hu

修改ABS灯判断条件错误问题

parent 06d6249a
......@@ -1859,7 +1859,7 @@ uint8_t LED_ABS_R_Judgement(void)
m_Condition1 = (uint8_t)Line_In_Get_Status(LINE_IN_ABS);
if ((((CanStatus1 == CAN_SIG_LOST) || (m_Condition2 == 0u)) && (K_Line_Set.K_Line_LID21 == 0x01u)) ||
(m_Condition1 == 1u) && (K_Line_Set.K_Line_LID21 == 0x03u))
((m_Condition1 == 1u) && (K_Line_Set.K_Line_LID21 == 0x03u)))
{
u8Result = 1u;
}
......
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