Page 1 of 1

Ecuflash, how to show psi instead of bar, etc?

PostPosted: Sun Aug 22, 2010 3:51 pm
by realitycheck
Hey guys I am trying to get my ecuflash swapped to standard definitions instead of metric how do I do this?
In other words it shows psi instead of bar, and Fahrenheit instead of Celsius.

Re: Ecuflash, how to show psi instead of bar, etc?

PostPosted: Tue Aug 24, 2010 6:20 am
by hpd_wally
Change the scalings in the xml def files, and also change the conversion formula type.

This is a lineout of evo10base_2010.xml


<scaling name="VehicleSpeed" units="km/h" toexpr="x*2" frexpr="x/2" format="%.0f" min="0" max="510" inc="1" storagetype="uint16" endian="big"/>

would turn to ...


<scaling name="VehicleSpeed" units="mp/h" toexpr="x*2*0.625" frexpr="x/2/0.625" format="%.0f" min="0" max="510" inc="1" storagetype="uint16" endian="big"/>


Metric is king anyways,

Re: Ecuflash, how to show psi instead of bar, etc?

PostPosted: Tue Aug 24, 2010 4:53 pm
by radsdau
Be sure to set the max scaling values accordingly as well (510kmph is about 317mph).
Also, the 0.625 is more accurately 0.62137.

hpd_wally- I agree, metric is king!