feat(nodes): setting the fastest BLE advertising frequency to 1 minute instead of 2

This is motivated by the measure period by the css811 sensor, which is 1 minute and cannot be set to 2.
Hence, we adverstise every minute to avoid trashing half of the measurements
This commit is contained in:
adrien balleyguier
2026-06-02 10:46:39 +02:00
committed by Klagarge
parent 83705f4b5e
commit d593dfd759

View File

@@ -1,6 +1,6 @@
#include "supervisor.h"
const int SLEEP_GRANULARITY = 2; // [min]
const int SLEEP_GRANULARITY = 1; // [min]
const int SLEEP_MIN_DURATION = SLEEP_GRANULARITY; // [min]
const int SLEEP_MAX_DURATION = 30; // [min]