From ccaba52f3c6f3463c3e5006d7453b4ea3d3bae8b Mon Sep 17 00:00:00 2001 From: liquidraver <504870+liquidraver@users.noreply.github.com> Date: Fri, 20 Mar 2026 22:12:15 +0100 Subject: [PATCH] tune contentiontracker --- zephcore/include/mesh/ContentionTracker.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zephcore/include/mesh/ContentionTracker.h b/zephcore/include/mesh/ContentionTracker.h index 16f37df..9194591 100644 --- a/zephcore/include/mesh/ContentionTracker.h +++ b/zephcore/include/mesh/ContentionTracker.h @@ -64,7 +64,7 @@ private: static constexpr int EMA_SHIFT = 3; /* alpha = 1/8 */ static constexpr int WARMUP_PACKETS = 4; static constexpr float MIN_FLOOD_FACTOR = 0.05f; - static constexpr float FLOOD_SCALE = 0.116f; /* (0.5 - 0.05) / sqrt(15) */ + static constexpr float FLOOD_SCALE = 0.170f; /* (0.5 - 0.05) / sqrt(15) */ static constexpr float MAX_FLOOD_FACTOR = 2.0f; static constexpr float DEFAULT_BACKOFF_MULT = 0.5f; static constexpr uint32_t REACTIVE_HARD_CAP_MS = 2000;