From 70f337868ae79370a49d4eb84a5d4fce684cf06a Mon Sep 17 00:00:00 2001 From: rusefillc Date: Mon, 11 Jan 2021 19:48:38 -0500 Subject: [PATCH] todo EFI_MAIN_RELAY_CONTROL --- firmware/controllers/system_fsio.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/firmware/controllers/system_fsio.txt b/firmware/controllers/system_fsio.txt index de2b1e3c87..706876d0ca 100644 --- a/firmware/controllers/system_fsio.txt +++ b/firmware/controllers/system_fsio.txt @@ -24,7 +24,10 @@ AC_RELAY_LOGIC=ac_on_switch & (rpm > 850) # Combined RPM, CLT and VBATT warning light COMBINED_WARNING_LIGHT=(rpm > fsio_setting(2)) | ((coolant > fsio_setting(3)) | (vbatt < fsio_setting(4))) -#needed by EFI_MAIN_RELAY_CONTROL +#needed by EFI_MAIN_RELAY_CONTROL which is currently FALSE for most of the boards +# todo: make '5' a setting? +# todo: always have 'EFI_MAIN_RELAY_CONTROL'? +# at the moment microRusEFI would not be happy with vbatt > 5 since microRusEFI senses main relay output #MAIN_RELAY_LOGIC=(time_since_boot >= 0 & time_since_boot < 2) | (vbatt > 5) | in_shutdown MAIN_RELAY_LOGIC=(!in_mr_bench) & ((vbatt > 5) | in_shutdown)