Megatune related
I'm using Megatune2.25b431 with vemsv3.ini r022
Injector DutyCycle is calculated wrong way in my case, I guess I got 3x values of actual duty-cycle
Original section from vemsv3.ini:\nÿ1ÿ
This code can support only one or two injection banks (according to MegaSquirt's capabilities).
If someone (like me) using different channels for each injector and using only one squirts per cycle can use the code simplified in r024 to:\nÿ2ÿ
I think this simplification is good for the configs like mine but goes wrong when banks are used ore there are more than one squirts per cycle.
My guess for a good config is:\nÿ3ÿ
Haven't tried it yet, but I think altDiv's true value has to be equal the number of used injection banks.
Example 1 (my case, six cylinders, six inj. channels):
- altDiv is 6 (six cylinders, six inj. channels)
- nSquirts is 6 (six cylinders, 1 squirts per cycle)
- this way result of nSquirts/altDiv changes from 3 to 1 so I get my correct results.
Example 2 (6 cyls with 2 banks):
- altDiv is 2 (six cylinders, two inj. channels)
- nSquirts is 6 (six cylinders, 1 squirts per cycle)
- result of nSquirts/altDiv is 3 which is correct.