Commit 4dcbd34f authored by 李俭双's avatar 李俭双

🐞 fix:依据规范变更,更改车速计算公式

parent 437796ba
...@@ -290,9 +290,9 @@ void Data_Vehicle_Speed_Processing_Service(void) ...@@ -290,9 +290,9 @@ void Data_Vehicle_Speed_Processing_Service(void)
if ( DataVSpeedValid ) if ( DataVSpeedValid )
{ {
VSpeedCal *= 107; VSpeedCal *= 108;
VSpeedCal /= 100; VSpeedCal /= 100;
VSpeedCal = VSpeedCal + 10;
if(VSpeedCal > 1990) if(VSpeedCal > 1990)
{ {
VSpeedCal = 1990; VSpeedCal = 1990;
......
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