From 5d39e3e088560591b40e6a3c4fdf334327855402 Mon Sep 17 00:00:00 2001 From: rusefi Date: Sat, 23 May 2020 19:17:15 -0400 Subject: [PATCH] partial rollback --- firmware/controllers/math/engine_math.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/firmware/controllers/math/engine_math.cpp b/firmware/controllers/math/engine_math.cpp index 2ff1b6422d..3ff7dba4f9 100644 --- a/firmware/controllers/math/engine_math.cpp +++ b/firmware/controllers/math/engine_math.cpp @@ -166,7 +166,8 @@ bool FuelSchedule::addFuelEventsForCylinder(int i DECLARE_ENGINE_PARAMETER_SUFF int cylindersCount = CONFIG(specs.cylindersCount); if (cylindersCount < 1) { - firmwareError(CUSTOM_OBD_ZERO_CYLINDER_COUNT, "Invalid cylinder count: %d", cylindersCount); + // May 2020 this somehow still happens with functional tests, maybe race condition? + warning(CUSTOM_OBD_ZERO_CYLINDER_COUNT, "Invalid cylinder count: %d", cylindersCount); return false; }