auto-sync

This commit is contained in:
rusEfi 2016-03-17 00:01:55 -04:00
parent bc5e8048a8
commit 0512be9039
2 changed files with 9 additions and 0 deletions

View File

@ -396,6 +396,14 @@ void mainTriggerCallback(trigger_event_e ckpSignalType, uint32_t eventIndex DECL
}
bool limitedSpark = rpm > CONFIG(rpmHardLimit);
bool limitedFuel = rpm > CONFIG(rpmHardLimit);
if (CONFIG(boostCutPressure) !=0) {
if (getMap() > CONFIG(boostCutPressure)) {
limitedSpark = true;
limitedFuel = true;
}
}
if (limitedSpark || limitedFuel) {
warning(OBD_PCM_Processor_Fault, "skipping stroke due to rpm=%d", rpm);
}

View File

@ -1630,6 +1630,7 @@ cmd_test_idle_valve = "w\x00\x17\x00\x01"
; Tuning->General
dialog = generalSettings, "General"
field = "RPM Hard Limit", rpmHardLimit
field = "Boost Cut Pressure", boostCutPressure
field = ""
field = "Fuel Algorithm", algorithm
field = ""