fix build on devices without gps
This commit is contained in:
parent
1850f94f71
commit
3321931a46
@ -629,8 +629,10 @@ void loop() {
|
|||||||
reset_salt(); // get new salt for salting hashes
|
reset_salt(); // get new salt for salting hashes
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef HAS_GPS
|
||||||
if ( (uptime() % 10000) == 0 )
|
if ( (uptime() % 10000) == 0 )
|
||||||
ESP_LOGI(TAG, "GPS NMEA data: passed %d / failed: %d / with fix: %d", gps.passedChecksum(), gps.failedChecksum(), gps.sentencesWithFix());
|
ESP_LOGI(TAG, "GPS NMEA data: passed %d / failed: %d / with fix: %d", gps.passedChecksum(), gps.failedChecksum(), gps.sentencesWithFix());
|
||||||
|
#endif
|
||||||
|
|
||||||
vTaskDelay(1/portTICK_PERIOD_MS); // reset watchdog
|
vTaskDelay(1/portTICK_PERIOD_MS); // reset watchdog
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user