From b0ecc675184485a31875d08116a0226016c4ff79 Mon Sep 17 00:00:00 2001 From: Josh Stewart Date: Wed, 16 Sep 2015 06:12:35 +1000 Subject: [PATCH] Add idleControl call back in --- speeduino.ino | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/speeduino.ino b/speeduino.ino index a0722db8..48f07dbe 100644 --- a/speeduino.ino +++ b/speeduino.ino @@ -529,6 +529,7 @@ void loop() if(startRevolutions >= configPage2.StgCycles) { ignitionOn = true; fuelOn = true;} } + idleControl(); //Perform any idle realted actions //END SETTING STATUSES //----------------------------------------------------------------------------------------------------- @@ -536,7 +537,7 @@ void loop() //Calculate an injector pulsewidth from the VE currentStatus.corrections = correctionsTotal(); //currentStatus.corrections = 100; - if (configPage1.algorithm == 0) //Check with fuelling algorithm is being used + if (configPage1.algorithm == 0) //Check which fuelling algorithm is being used { //Speed Density currentStatus.VE = get3DTableValue(&fuelTable, currentStatus.MAP, currentStatus.RPM); //Perform lookup into fuel map for RPM vs MAP value