From 8abba33dd8a6c4d30c1653aa83baaedbc309e156 Mon Sep 17 00:00:00 2001 From: Ryan Butler Date: Sat, 12 Mar 2022 04:36:59 -0500 Subject: [PATCH] Fix sporadic data pauses from POWER_SAVING_MINIMUM From discord: https://discord.com/channels/817184208525983775/878727840118505533/952135552323444757 --- src/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug.h b/src/debug.h index 68f713f..44f9988 100644 --- a/src/debug.h +++ b/src/debug.h @@ -57,7 +57,7 @@ #define samplingRateInMillis 10 // Sleeping options -#define POWERSAVING_MODE POWER_SAVING_MINIMUM +#define POWERSAVING_MODE POWER_SAVING_LEGACY // Minimum causes sporadic data pauses #if POWERSAVING_MODE >= POWER_SAVING_MINIMUM #define TARGET_LOOPTIME_MICROS (samplingRateInMillis * 1000) #endif