succd: Use tigher hysteresis values
All checks were successful
/ test (pull_request) Successful in 10s
/ test (push) Successful in 10s

It seems we can get away with less hysteresis still.  Make the values a
bit smaller.
This commit is contained in:
Rahix 2024-10-04 23:24:21 +02:00
parent ef959f4be3
commit e2fc15ed9b

View file

@ -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() {