From 4000c24dded873560a11a602e81d5fa5a4975cbb Mon Sep 17 00:00:00 2001 From: Josh Stewart Date: Fri, 29 Jun 2018 18:08:17 +1000 Subject: [PATCH] Change boost control hyster to work above 100kpa --- speeduino/auxiliaries.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/speeduino/auxiliaries.ino b/speeduino/auxiliaries.ino index 1dc8428d..99a1e554 100644 --- a/speeduino/auxiliaries.ino +++ b/speeduino/auxiliaries.ino @@ -121,7 +121,7 @@ void boostControl() else if (configPage4.boostType == CLOSED_LOOP_BOOST) { if( (boostCounter & 7) == 1) { currentStatus.boostTarget = get3DTableValue(&boostTable, currentStatus.TPS, currentStatus.RPM) * 2; } //Boost target table is in kpa and divided by 2 - if(currentStatus.MAP >= (currentStatus.boostTarget - BOOST_HYSTER) ) + if(currentStatus.MAP >= 100 ) //Only engage boost control above 100kpa. { //If flex fuel is enabled, there can be an adder to the boost target based on ethanol content if( configPage2.flexEnabled == 1 )