Commit 30bea0af authored by 陈家乐's avatar 陈家乐

🐞 fix:胎压显示外发同步

parent 605af3bd
......@@ -574,7 +574,7 @@ uint16_t Get_Front_TPMS_Sig_Value (void)
//else
{
//value = TPMS.Front_Press_Value + 50;
value = (uint16_t)((TPMS.Front_Press_Value + 50) / 100);
value = (uint16_t)((Relaying_Rear_Press_Value + 50) / 100);
}
return value;
}
......@@ -593,7 +593,7 @@ uint16_t Get_Rear_TPMS_Sig_Value (void)
//else
{
//value = TPMS.Rear_Press_Value + 50;
value = (uint8_t)((TPMS.Rear_Press_Value + 50) / 100);
value = (uint8_t)((Relaying_Rear_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