From 2de04090614ae7b1e1930c56e2a91ea275374ae3 Mon Sep 17 00:00:00 2001 From: Andrey Date: Sat, 30 Oct 2021 22:24:43 -0400 Subject: [PATCH] Whatever we call it, no matter how we do it - we need live data / remote view into rusEFI actual state #3353 --- firmware/controllers/algo/accel_enrichment.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/controllers/algo/accel_enrichment.cpp b/firmware/controllers/algo/accel_enrichment.cpp index 6746c99860..281feac9f4 100644 --- a/firmware/controllers/algo/accel_enrichment.cpp +++ b/firmware/controllers/algo/accel_enrichment.cpp @@ -164,7 +164,7 @@ void TpsAccelEnrichment::onEngineCycleTps(DECLARE_ENGINE_PARAMETER_SIGNATURE) { // it's an infinitely convergent series, so we set a limit at some point // (also make sure that accumulatedValue is positive, for safety) static const floatms_t smallEpsilon = 0.001f; - belowEpsilon = accumulatedValue < smallEpsilon + belowEpsilon = accumulatedValue < smallEpsilon; if (belowEpsilon) { accumulatedValue = 0; }