From bf85db1c9b37de65e2ed62680b0f3bebe791d565 Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Wed, 31 Aug 2022 16:01:42 -0700 Subject: [PATCH] AC delay (#4502) * AC delay * changelog --- firmware/CHANGELOG.md | 1 + firmware/controllers/actuators/ac_control.cpp | 15 ++++++++++++++- firmware/controllers/actuators/ac_control.h | 1 + firmware/controllers/actuators/ac_control.txt | 1 + firmware/integration/rusefi_config.txt | 3 ++- firmware/tunerstudio/rusefi.input | 1 + 6 files changed, 20 insertions(+), 2 deletions(-) diff --git a/firmware/CHANGELOG.md b/firmware/CHANGELOG.md index 532a12cc02..e70e9a4b66 100644 --- a/firmware/CHANGELOG.md +++ b/firmware/CHANGELOG.md @@ -29,6 +29,7 @@ Release template (copy/paste this for new release): - Time delay before DFCO #4292 - Idle coasting position table is now RPM-based, instead of CLT-based #4487 - Manual electronic throttle synchronization #3680 + - Delay before enabling AC compressor #4502 ### Fixed - Inverted vvt control #4464 diff --git a/firmware/controllers/actuators/ac_control.cpp b/firmware/controllers/actuators/ac_control.cpp index e0d148584f..f5995f5cb4 100644 --- a/firmware/controllers/actuators/ac_control.cpp +++ b/firmware/controllers/actuators/ac_control.cpp @@ -58,7 +58,20 @@ void AcController::onSlowCallback() { m_acEnabled = isEnabled; - enginePins.acRelay.setValue(isEnabled); + if (!isEnabled) { + // reset the timer if AC is off + m_timeSinceNoAc.reset(); + } + + float acDelay = engineConfiguration->acDelay; + if (acDelay == 0) { + // Without delay configured, enable immediately + acCompressorState = isEnabled; + } else { + acCompressorState = isEnabled && m_timeSinceNoAc.hasElapsedSec(acDelay); + } + + enginePins.acRelay.setValue(acCompressorState); } bool AcController::isAcEnabled() const { diff --git a/firmware/controllers/actuators/ac_control.h b/firmware/controllers/actuators/ac_control.h index bed61b05d5..08f941999a 100644 --- a/firmware/controllers/actuators/ac_control.h +++ b/firmware/controllers/actuators/ac_control.h @@ -11,4 +11,5 @@ public: private: bool getAcState(); + Timer m_timeSinceNoAc; }; diff --git a/firmware/controllers/actuators/ac_control.txt b/firmware/controllers/actuators/ac_control.txt index 34fd19d554..89c1e9cafc 100644 --- a/firmware/controllers/actuators/ac_control.txt +++ b/firmware/controllers/actuators/ac_control.txt @@ -11,6 +11,7 @@ bit noClt;AC no CLT bit engineTooHot;AC engine too hot bit tpsTooHigh;AC tps too high bit isDisabledByLua;AC disabled by Lua +bit acCompressorState;AC compressor on int latest_usage_ac_control;AC latest activity ! todo: extract some helper which would contain boolean state and most recent toggle time? diff --git a/firmware/integration/rusefi_config.txt b/firmware/integration/rusefi_config.txt index ee8b02e293..3d829a61ea 100644 --- a/firmware/integration/rusefi_config.txt +++ b/firmware/integration/rusefi_config.txt @@ -1430,8 +1430,9 @@ tChargeMode_e tChargeMode; uint8_t autoscale maxCamPhaseResolveRpm;Below this RPM, use camshaft information to synchronize the crank's position for full sequential operation. Use this if your cam sensor does weird things at high RPM. Set to 0 to disable, and always use cam to help sync crank.;"rpm", 50, 0, 0, 12500, 0 uint8_t autoscale dfcoDelay;Delay before cutting fuel. Set to 0 to cut immediately with no delay. May cause rumbles and pops out of your exhaust...;"sec", 0.1, 0, 0, 10, 1 + uint8_t autoscale acDelay;Delay before engaging the AC compressor. Set to 0 to engage immediately with no delay. Use this to prevent bogging at idle when AC engages.;"sec", 0.1, 0, 0, 10, 1 - int8_t[10] unused4080;;"", 1, 0, 0, 0, 0 + int8_t[9] unused4080;;"", 1, 0, 0, 0, 0 ! Someday there will be a 6th option for BMW S55 that uses a separate shaft just for HPFP #define hpfp_cam_e_enum "NONE", "Intake 1", "Exhaust 1", "Intake 2", "Exhaust 2" diff --git a/firmware/tunerstudio/rusefi.input b/firmware/tunerstudio/rusefi.input index 3b5583af58..16287cc7ee 100644 --- a/firmware/tunerstudio/rusefi.input +++ b/firmware/tunerstudio/rusefi.input @@ -2948,6 +2948,7 @@ cmd_set_engine_type_default = "@@TS_IO_TEST_COMMAND_char@@\x00\x31\x00\x00" field = "A/C switch mode", acSwitchMode field = "A/C Relay", acRelayPin field = "A/C Relay Mode", acRelayPinMode + field = "A/C compressor delay", acDelay field = "Max RPM", maxAcRpm field = "Max CLT", maxAcClt field = "Max TPS", maxAcTps