Browse Source

Stopped at boot up means going to long sleep. Fixed long sleep would result in a backup each time

tags/v1.2.0
Bertrand Lemasle 7 years ago
parent
commit
deaf10ed53
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      GpsTracker/Core.cpp

+ 2
- 2
GpsTracker/Core.cpp View File

@@ -8,7 +8,7 @@ using namespace utils;


namespace core { namespace core {
uint16_t sleepTime = SLEEP_DEFAULT_TIME_SECONDS; uint16_t sleepTime = SLEEP_DEFAULT_TIME_SECONDS;
uint8_t stoppedInARow = 0;
uint8_t stoppedInARow = SLEEP_DEFAULT_STOPPED_THRESHOLD - 1;


void main() { void main() {
bool forceBackup = false; bool forceBackup = false;
@@ -32,7 +32,7 @@ namespace core {
if (stoppedInARow < SLEEP_DEFAULT_STOPPED_THRESHOLD) { if (stoppedInARow < SLEEP_DEFAULT_STOPPED_THRESHOLD) {
result = SLEEP_DEFAULT_PAUSING_TIME_SECONDS; result = SLEEP_DEFAULT_PAUSING_TIME_SECONDS;
} }
else goingLongSleep = true;
else if(stoppedInARow == SLEEP_DEFAULT_STOPPED_THRESHOLD) goingLongSleep = true;
} }
else stoppedInARow = 0; else stoppedInARow = 0;




Loading…
Cancel
Save