From c76cd7fb85e0411f5969cf77ebd250fc2aa191df Mon Sep 17 00:00:00 2001 From: rusefillc Date: Wed, 13 Apr 2022 16:05:01 -0400 Subject: [PATCH] Set sensible default for dwell by voltage multiplier table #4067 sad face --- firmware/controllers/engine_controller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/controllers/engine_controller.cpp b/firmware/controllers/engine_controller.cpp index c67fb9885b..c7484e2c2e 100644 --- a/firmware/controllers/engine_controller.cpp +++ b/firmware/controllers/engine_controller.cpp @@ -603,7 +603,7 @@ bool validateConfig() { ensureArrayIsAscendingOrDefault("Map estimate TPS", config->mapEstimateTpsBins); ensureArrayIsAscendingOrDefault("Map estimate RPM", config->mapEstimateRpmBins); - ensureArrayIsAscendingOrDefault("Dwell Correction Voltage", engineConfiguration->dwellVoltageCorrVoltBins); +// todo: huh? why does this not work on CI? ensureArrayIsAscendingOrDefault("Dwell Correction Voltage", engineConfiguration->dwellVoltageCorrVoltBins); ensureArrayIsAscending("MAF decoding", config->mafDecodingBins);