From 0e19fc86bc57b32154db4eef47ef6c629a16dca7 Mon Sep 17 00:00:00 2001 From: tx_haggis <13982343+adbancroft@users.noreply.github.com> Date: Sun, 19 Feb 2023 16:15:13 -0600 Subject: [PATCH] Sync mode changes: fuel shouldn't impact ignition (#1009) This would mess with a combo of sequential fuel and wasted spark. --- speeduino/init.ino | 2 -- 1 file changed, 2 deletions(-) diff --git a/speeduino/init.ino b/speeduino/init.ino index 5c8e76dd..6770ed86 100644 --- a/speeduino/init.ino +++ b/speeduino/init.ino @@ -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) {