Commit 859ed367 authored by 郑萍's avatar 郑萍

🐞 fix:51351 【润通草地车】【总SOC显示】仪表显示范围超过100%

parent 9d02e952
......@@ -213,6 +213,10 @@ void Gauge_EleDial_AllSOC_Display(void)
if ((Common_Get_IG_Sts() == COMMON_POWER_ON) && (Get_CAN_Power_State() != KEY_OFF) && (Get_CAN_Power_State() != PKEY_ON)&& (System_Indicator_CANFlag != 1))
{
AllSOC_DIS = Get_CAN_Num_MBMS_StatSoc();
if(AllSOC_DIS > 100)
{
AllSOC_DIS = 100;
}
SEG_SET_EleDial_AllSOC(1, AllSOC_DIS);
}
else
......
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