From d406a7cb36ccf31bf60169b144d24095898baa98 Mon Sep 17 00:00:00 2001 From: rusefi Date: Sun, 7 May 2017 14:09:40 -0400 Subject: [PATCH] todo --- firmware/controllers/algo/fuel_math.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/controllers/algo/fuel_math.cpp b/firmware/controllers/algo/fuel_math.cpp index 3e5643d348..6633d9fa42 100644 --- a/firmware/controllers/algo/fuel_math.cpp +++ b/firmware/controllers/algo/fuel_math.cpp @@ -259,7 +259,7 @@ floatms_t getCrankingFuel3(float coolantTemperature, uint32_t revolutionCounterSinceStart DECLARE_ENGINE_PARAMETER_S) { // these magic constants are in Celsius float baseCrankingFuel = engineConfiguration->cranking.baseFuel; - if (cisnan(coolantTemperature)) + if (cisnan(coolantTemperature)) // todo: move this check down, below duration correction? return baseCrankingFuel; float durationCoef = interpolate2d(revolutionCounterSinceStart, config->crankingCycleBins, config->crankingCycleCoef, CRANKING_CURVE_SIZE);