SD card is missing "ETB average duty0" field fix #6720

step back :(
This commit is contained in:
rusefillc 2024-12-29 08:04:31 -05:00
parent 980c962ae8
commit bd9db23671
5 changed files with 14 additions and 2 deletions

View File

@ -384,6 +384,11 @@
#define EFI_LUA TRUE
#endif
#ifndef FULL_SD_LOGS
// reduce RAM usage? todo: optimize RAM consumption so that all builds have full logs?
#define FULL_SD_LOGS FALSE
#endif
#ifndef EFI_LUA_LOOKUP
#define EFI_LUA_LOOKUP TRUE
#endif

View File

@ -50,6 +50,10 @@
#define EFI_USE_UART_DMA FALSE
#endif
#ifndef FULL_SD_LOGS
#define FULL_SD_LOGS TRUE
#endif
// F7 may have dual bank, so flash on its own (low priority) thread so as to not block any other operations
#ifndef EFI_FLASH_WRITE_THREAD
#define EFI_FLASH_WRITE_THREAD TRUE

View File

@ -126,6 +126,7 @@ Usages:
output_name: [ "fan1", "fan2" ]
constexpr: ["engine->module<FanControl1>()", "engine->module<FanControl2>()"]
isPtr: true
conditional_compilation: "FULL_SD_LOGS"
- name: fuel_pump_control
cppFileName: fuel_pump
@ -171,7 +172,7 @@ Usages:
java: TriggerState.java
folder: controllers/trigger
prepend: integration/rusefi_config_shared.txt
conditional_compilation: "EFI_SHAFT_POSITION_INPUT"
conditional_compilation: "EFI_SHAFT_POSITION_INPUT && FULL_SD_LOGS"
output_name: [ "trg", "vvt1i", "vvt1e", "vvt2i", "vvt2e" ]
constexpr: [ "engine->triggerCentral.triggerState", "engine->triggerCentral.vvtState[0][0]","engine->triggerCentral.vvtState[0][1]","engine->triggerCentral.vvtState[1][0]","engine->triggerCentral.vvtState[1][1]"]
@ -203,7 +204,7 @@ Usages:
output_name: [ "etb1", "etb2" ]
constexpr: ["getLiveData<electronic_throttle_s>(0)", "getLiveData<electronic_throttle_s>(1)"]
isPtr: true
conditional_compilation: "EFI_PROD_CODE && EFI_ELECTRONIC_THROTTLE_BODY"
conditional_compilation: "EFI_PROD_CODE && EFI_ELECTRONIC_THROTTLE_BODY && FULL_SD_LOGS"
- name: wideband_state
cppFileName: AemXSeriesLambda

View File

@ -21,6 +21,7 @@
#define EFI_AUX_VALVES FALSE
#define EFI_TS_TUNNEL_CAN TRUE
#define FULL_SD_LOGS TRUE
#define EFI_HD_ACR TRUE

View File

@ -22,6 +22,7 @@
#define EFI_ENGINE_SNIFFER TRUE
#define EFI_SENSOR_CHART TRUE
#define FULL_SD_LOGS TRUE
#define EFI_SENT_SUPPORT TRUE