better QC procedure

This commit is contained in:
rusefi 2020-09-19 16:07:09 -04:00
parent 96ec6ef9ac
commit 5515dc1abe
1 changed files with 1 additions and 1 deletions

View File

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