Page 2 of 2

PostPosted: Fri Mar 10, 2006 2:37 pm
by rewt
hmm... i've started using big endian support in ecuEdit, but now, certain formulas are no longer working. for example, the following formulas for MAF Sensor scaling are no longer working:

<function name="toMAFvolt" expr="[value]*0.019534"/>
<function name="toAirFlow" expr="[value]*300/256"/>
<function name="toAirFlow16" expr="[value]*300/65536"/>

Also, injector scaling displays 380cc's on my stock ROM when I use:
func_2val="2447960/[value]"

I thought the stock injectors were 400+ cc's.

PostPosted: Fri Mar 10, 2006 4:28 pm
by qoncept
From my understanding, the stock WRX injectors are rated at something like 440cc but actually only flow 380cc/min. I'm not really sure.

This is just off the top of my head, but try this..

<function name="toMAFvolt" expr="[value]*0.019534*256"/>
<function name="toAirFlow" expr="[value]*300"/>
<function name="toAirFlow16" expr="[value]*300/256"/>