Applied GPS power saving profile with 10 min on, 1 day off cycle

This commit is contained in:
Simon Blandford
2026-08-17 13:25:22 +01:00
parent 54e5bb04e1
commit a6ae765020
4 changed files with 38 additions and 0 deletions
+12
View File
@@ -106,6 +106,18 @@ void setup() {
command[0] = 0;
#if ENV_INCLUDE_GPS == 1
// Apply PowerSaving profile for GPS
if (sensors.getLocationProvider() != NULL) {
// Let CLI "gps on" call setSettingValue to enable the PowerSaving mode
// sensors.powersaving_enabled = true;
// sensors.getLocationProvider()->enablePowerSaving(true);
// GPS on and off duration in seconds
sensors.getLocationProvider()->setPowerSavingProfile(600, 86400); // Max 10 minutes, 1 day
}
#endif
sensors.begin();
the_mesh.begin(fs);