Commit 378924c2 authored by 李俭双's avatar 李俭双

🐞 fix:更改水温报警判断值

parent b0d02a3c
......@@ -322,11 +322,11 @@ void Data_Coolant_Temp_Display ( void )
}
else
{
if (DataCoolantTemp.Value >= 115)
if (GET_DataCoolantSegValue() >= 115)
{
DataCoolantTemp_Dis.u8_Warnflg = 2;
}
else if (DataCoolantTemp.Value <= 112)
else if (GET_DataCoolantSegValue() <= 112)
{
DataCoolantTemp_Dis.u8_Warnflg = 0;
}
......
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