Fix for speed averaging
Posted: Wed 4. Nov 2015, 20:13
I realized that the averaging of the vehicle speed didn't work, data.speedIndex always had the same value. The fix is to in file MultidisplayController.cpp change line 752 from
into
And as a result I also had to change my SPEEDFACTOR into a fifth as I had tuned it in with the non-working averaging.
Code: Select all
data.speedIndex = data.speedIndex++;
Code: Select all
data.speedIndex++;