From 5515dc1abe587eb39b4fbb9838845fab9cd62811 Mon Sep 17 00:00:00 2001 From: rusefi Date: Sat, 19 Sep 2020 16:07:09 -0400 Subject: [PATCH] better QC procedure --- firmware/controllers/algo/engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/controllers/algo/engine.cpp b/firmware/controllers/algo/engine.cpp index 3177cf1998..f049dfbaf6 100644 --- a/firmware/controllers/algo/engine.cpp +++ b/firmware/controllers/algo/engine.cpp @@ -153,7 +153,7 @@ static void cylinderCleanupControl(DECLARE_ENGINE_PARAMETER_SIGNATURE) { #if HW_CHECK_MODE static void assertCloseTo(const char * msg, float actual, float expected) { - if (actual < 0.9 * expected || actual > 1.1 * expected) { + if (actual < 0.75 * expected || actual > 1.25 * expected) { firmwareError(OBD_PCM_Processor_Fault, "%s analog input validation failed %f vs %f", msg, actual, expected); } }