Commit 89ba6bff authored by 陈家乐's avatar 陈家乐

🐞 fix:65186 表显前后轮胎压均为2.0bar

parent d78c1198
......@@ -574,7 +574,7 @@ uint16_t Get_Front_TPMS_Sig_Value (void)
//else
{
//value = TPMS.Front_Press_Value + 50;
value = (uint16_t)((Relaying_Rear_Press_Value + 50) / 100);
value = (uint16_t)((Relaying_Front_Press_Value + 50) / 100);
}
return value;
}
......
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