Something something Automatic Compression Release #3442
This commit is contained in:
parent
6436a2b9a4
commit
cd57e1fdb6
|
@ -94,7 +94,7 @@ public:
|
||||||
AcState acState;
|
AcState acState;
|
||||||
bool enableOverdwellProtection = true;
|
bool enableOverdwellProtection = true;
|
||||||
bool isPwmEnabled = true;
|
bool isPwmEnabled = true;
|
||||||
int triggerActivitySecond = -99;
|
int triggerActivityMs = -99 * 1000;
|
||||||
|
|
||||||
const char *prevOutputName = nullptr;
|
const char *prevOutputName = nullptr;
|
||||||
|
|
||||||
|
|
|
@ -720,7 +720,7 @@ void runHardcodedFsio(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||||
}
|
}
|
||||||
// see FUEL_PUMP_LOGIC
|
// see FUEL_PUMP_LOGIC
|
||||||
if (isBrainPinValid(CONFIG(fuelPumpPin))) {
|
if (isBrainPinValid(CONFIG(fuelPumpPin))) {
|
||||||
int triggerActivityOrEcuStartSecond = maxI(0, engine->triggerActivitySecond);
|
int triggerActivityOrEcuStartSecond = maxI(0, engine->triggerActivityMs / 1000);
|
||||||
|
|
||||||
enginePins.fuelPumpRelay.setValue((getTimeNowSeconds() < triggerActivityOrEcuStartSecond + engineConfiguration->startUpFuelPumpDuration) || (engine->rpmCalculator.getRpm() > 0));
|
enginePins.fuelPumpRelay.setValue((getTimeNowSeconds() < triggerActivityOrEcuStartSecond + engineConfiguration->startUpFuelPumpDuration) || (engine->rpmCalculator.getRpm() > 0));
|
||||||
}
|
}
|
||||||
|
|
|
@ -403,7 +403,7 @@ void mainTriggerCallback(uint32_t trgEventIndex, efitick_t edgeTimestamp DECLARE
|
||||||
*/
|
*/
|
||||||
enginePins.fuelPumpRelay.setValue(true); // quickly set pin right from the callback here! todo: would it work OK for smart SPI pin?!
|
enginePins.fuelPumpRelay.setValue(true); // quickly set pin right from the callback here! todo: would it work OK for smart SPI pin?!
|
||||||
#if EFI_PROD_CODE
|
#if EFI_PROD_CODE
|
||||||
engine->triggerActivitySecond = getTimeNowSeconds();
|
engine->triggerActivityMs = currentTimeMillis();
|
||||||
#endif
|
#endif
|
||||||
// todo: check for 'trigger->is_synchnonized?'
|
// todo: check for 'trigger->is_synchnonized?'
|
||||||
// TODO: add 'pin shutdown' invocation somewhere - coils might be still open here!
|
// TODO: add 'pin shutdown' invocation somewhere - coils might be still open here!
|
||||||
|
|
Loading…
Reference in New Issue