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);