[location] Position is searched again in 30h instead of 8h

It should make location dialogs less annoying for those who use OM without GPS

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2023-01-18 13:44:21 +01:00 committed by Viktor Govako
parent 37fd63e05f
commit 54e912767a

View file

@ -27,7 +27,7 @@ int const kPositionRoutingOffsetY = 104;
double const kMinSpeedThresholdMps = 2.8; // 10 km/h
double const kGpsBearingLifetimeSec = 5.0;
double const kMaxPendingLocationTimeSec = 60.0;
double const kMaxTimeInBackgroundSec = 60.0 * 60 * 8; // 8 hours
double const kMaxTimeInBackgroundSec = 60.0 * 60 * 30; // 30 hours before starting detecting position again
double const kMaxNotFollowRoutingTimeSec = 20.0;
double const kMaxUpdateLocationInvervalSec = 30.0;
double const kMaxBlockAutoZoomTimeSec = 10.0;