From 3e6d0f64be85223d11b8b63a409da339d7cc1d04 Mon Sep 17 00:00:00 2001 From: Andrey Date: Sun, 3 Apr 2022 18:48:23 -0400 Subject: [PATCH] MAP value thresholds #4030 --- firmware/controllers/algo/engine_configuration.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/firmware/controllers/algo/engine_configuration.cpp b/firmware/controllers/algo/engine_configuration.cpp index b90ae18d36..8cfb041763 100644 --- a/firmware/controllers/algo/engine_configuration.cpp +++ b/firmware/controllers/algo/engine_configuration.cpp @@ -701,7 +701,9 @@ static void setDefaultEngineConfiguration() { engineConfiguration->vssToothCount = 21; engineConfiguration->mapErrorDetectionTooLow = 5; - engineConfiguration->mapErrorDetectionTooHigh = 250; + // todo: default limits should be hard-coded for each sensor type + // https://github.com/rusefi/rusefi/issues/4030 + engineConfiguration->mapErrorDetectionTooHigh = 410; engineConfiguration->useLcdScreen = true;