From e52ec0e6111455f2f5204bb636088166b02eced7 Mon Sep 17 00:00:00 2001 From: rusefi Date: Sat, 23 May 2020 18:11:04 -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 3dd61079a6..2ff1b6422d 100644 --- a/firmware/controllers/math/engine_math.cpp +++ b/firmware/controllers/math/engine_math.cpp @@ -381,7 +381,8 @@ int getCylinderId(int index DECLARE_ENGINE_PARAMETER_SUFFIX) { return 1; } if (engineConfiguration->specs.cylindersCount != firingOrderLength) { - firmwareError(CUSTOM_OBD_WRONG_FIRING_ORDER, "Wrong cyl count for firing order, expected %d cylinders", firingOrderLength); + // May 2020 this somehow still happens with functional tests, maybe race condition? + warning(CUSTOM_OBD_WRONG_FIRING_ORDER, "Wrong cyl count for firing order, expected %d cylinders", firingOrderLength); return 1; }