auto-sync
This commit is contained in:
parent
1436f21e53
commit
d5936a16b8
|
@ -140,9 +140,12 @@ void EngineState::periodicFastCallback(DECLARE_ENGINE_PARAMETER_F) {
|
|||
|
||||
iatFuelCorrection = getIatCorrection(iat PASS_ENGINE_PARAMETER);
|
||||
if (boardConfiguration->useWarmupPidAfr && clt < 80) {
|
||||
if (rpm < 200)
|
||||
if (rpm < 200) {
|
||||
cltFuelCorrection = 1;
|
||||
warmupAfrPid.reset();
|
||||
cltFuelCorrection = 1 + warmupAfrPid.getValue(13, getAfr(PASS_ENGINE_PARAMETER_F), 1);
|
||||
} else {
|
||||
cltFuelCorrection = 1 + warmupAfrPid.getValue(13, getAfr(PASS_ENGINE_PARAMETER_F), 1);
|
||||
}
|
||||
|
||||
} else {
|
||||
cltFuelCorrection = getCltCorrection(clt PASS_ENGINE_PARAMETER);
|
||||
|
|
|
@ -943,8 +943,8 @@ fileVersion = { 20160122 }
|
|||
pulseWidthGauge = pulseWidth, "fuel final squirt, per injection", "mSec", 0, 25.5, 1.0, 1.2, 20, 25, 3, 1
|
||||
baseFuelGauge = baseFuel, "fuel: base duration, before corr", "mSec", 0, 25.5, 1.0, 1.2, 20, 25, 3, 1
|
||||
crankingFuelGauge = crankingFuel, "fuel: crank Width", "mSec", 0, 25.5, 1.0, 1.2, 20, 25, 3, 1
|
||||
iatCorrectionGauge = iatCorrection, "fuel: IAT correction", "mult", 0, 10, 0, 0, 10, 10, 0, 0
|
||||
cltCorrectionGauge = cltCorrection, "fuel: CLT correction", "mult", 0, 10, 0, 0, 10, 10, 0, 0
|
||||
iatCorrectionGauge = iatCorrection, "fuel: IAT correction", "mult", 0, 3, 0, 0, 3, 3, 2, 2
|
||||
cltCorrectionGauge = cltCorrection, "fuel: CLT correction", "mult", 0, 3, 0, 0, 3, 3, 2, 2
|
||||
injectorDutyCycleGauge=injectorDutyCycle, "fuel: injectorDutyCycle","%", 0, 120, 10, 10, 100, 100, 1, 1
|
||||
|
||||
engineLoadAccelDeltaGauge = engineLoadAccelDelta,"fuel: load enrich","%", 0, 120, 10, 10, 100, 100, 1, 1
|
||||
|
@ -1595,6 +1595,7 @@ fileVersion = { 20160122 }
|
|||
; Board->ECU stimulator
|
||||
dialog = ecuStimulator, "ECU stimulator"
|
||||
field = "Trigger Simulator", triggerSimulatorFrequency
|
||||
field = "self-stimulation", directSelfStimulation
|
||||
field = ""
|
||||
field = "digipot spi", digitalPotentiometerSpiDevice
|
||||
field = "digipot CS #0", digitalPotentiometerChipSelect1
|
||||
|
|
Loading…
Reference in New Issue