From e2fc15ed9ba6cf512cbbd23663682fbb3bf1bb5a Mon Sep 17 00:00:00 2001 From: Rahix Date: Fri, 4 Oct 2024 23:24:21 +0200 Subject: [PATCH] succd: Use tigher hysteresis values It seems we can get away with less hysteresis still. Make the values a bit smaller. --- succbone/succd/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/succbone/succd/main.go b/succbone/succd/main.go index a8ae0f8..4a39d11 100644 --- a/succbone/succd/main.go +++ b/succbone/succd/main.go @@ -14,9 +14,9 @@ var ( flagFake bool flagListenHTTP string flagPressureThresholdRough = ScientificNotationValue(1e-1) - flagPressureThresholdRoughHysteresis = ScientificNotationValue(5e-2) + flagPressureThresholdRoughHysteresis = ScientificNotationValue(2e-2) flagPressureThresholdHigh = ScientificNotationValue(1e-4) - flagPressureThresholdHighHysteresis = ScientificNotationValue(5e-5) + flagPressureThresholdHighHysteresis = ScientificNotationValue(2e-5) ) func main() {