From bd40c4f8df003de1dc1a967e69e208b6781b851f Mon Sep 17 00:00:00 2001 From: Rahix Date: Sat, 5 Oct 2024 19:44:55 +0200 Subject: [PATCH] succd: Update rough vacuum hysteresis once more We see fluctuation slightly above 4e-2 mbar so let's increase the hysteresis value a bit more. --- succbone/succd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/succbone/succd/main.go b/succbone/succd/main.go index 4a39d11..64663a8 100644 --- a/succbone/succd/main.go +++ b/succbone/succd/main.go @@ -14,7 +14,7 @@ var ( flagFake bool flagListenHTTP string flagPressureThresholdRough = ScientificNotationValue(1e-1) - flagPressureThresholdRoughHysteresis = ScientificNotationValue(2e-2) + flagPressureThresholdRoughHysteresis = ScientificNotationValue(3e-2) flagPressureThresholdHigh = ScientificNotationValue(1e-4) flagPressureThresholdHighHysteresis = ScientificNotationValue(2e-5) )