From 20ed7e66150b9954522dd020676abcd9a8d3a267 Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Tue, 21 Jul 2020 11:54:32 -0700 Subject: [PATCH] fix for test --- firmware/controllers/algo/engine2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/controllers/algo/engine2.cpp b/firmware/controllers/algo/engine2.cpp index fe830640af..838dc931d6 100644 --- a/firmware/controllers/algo/engine2.cpp +++ b/firmware/controllers/algo/engine2.cpp @@ -199,7 +199,7 @@ void EngineState::periodicFastCallback(DECLARE_ENGINE_PARAMETER_SIGNATURE) { } currentBaroCorrectedVE = baroCorrection * currentRawVE * PERCENT_DIV; } else { - baseTableFuel = getBaseTableFuel(rpm, getFuelingLoad(PASS_ENGINE_PARAMETER_SIGNATURE)); + baseTableFuel = getBaseTableFuel(rpm, getEngineLoadT(PASS_ENGINE_PARAMETER_SIGNATURE)); } ENGINE(injectionDuration) = getInjectionDuration(rpm PASS_ENGINE_PARAMETER_SUFFIX);