Sync mode changes: fuel shouldn't impact ignition (#1009)
This would mess with a combo of sequential fuel and wasted spark.
This commit is contained in:
parent
d7d44014bf
commit
0e19fc86bc
|
@ -3438,7 +3438,6 @@ void changeHalfToFullSync(void)
|
|||
if( (configPage2.injLayout == INJ_SEQUENTIAL) && (CRANK_ANGLE_MAX_INJ != 720) )
|
||||
{
|
||||
CRANK_ANGLE_MAX_INJ = 720;
|
||||
maxIgnOutputs = configPage2.nCylinders;
|
||||
req_fuel_uS *= 2;
|
||||
|
||||
inj1StartFunction = openInjector1;
|
||||
|
@ -3534,7 +3533,6 @@ void changeFullToHalfSync(void)
|
|||
if(configPage2.injLayout == INJ_SEQUENTIAL)
|
||||
{
|
||||
CRANK_ANGLE_MAX_INJ = 360;
|
||||
maxIgnOutputs = configPage2.nCylinders / 2;
|
||||
req_fuel_uS /= 2;
|
||||
switch (configPage2.nCylinders)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue