auto-sync
This commit is contained in:
parent
bc5e8048a8
commit
0512be9039
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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 = ""
|
||||
|
|
Loading…
Reference in New Issue