mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2026-01-03 07:09:59 +01:00
Merge pull request #198 from lora-aprs/peterus-patch-1
ntp sync ota upload
This commit is contained in:
commit
2560fef5ce
|
|
@ -17,7 +17,7 @@ class NTPClient {
|
|||
unsigned int _port = NTP_DEFAULT_LOCAL_PORT;
|
||||
long _timeOffset = 0;
|
||||
|
||||
unsigned long _updateInterval = 60000; // In ms
|
||||
unsigned long _updateInterval = 3600000; // In ms
|
||||
|
||||
unsigned long _currentEpoc = 0; // In s
|
||||
unsigned long _lastUpdate = 0; // In ms
|
||||
|
|
|
|||
|
|
@ -18,14 +18,11 @@ bool OTATask::setup(System &system) {
|
|||
} else { // U_SPIFFS
|
||||
type = "filesystem";
|
||||
}
|
||||
system.getLogger().log(logging::LoggerLevel::LOGGER_LEVEL_INFO, getName(), "Start updating %s", type.c_str());
|
||||
system.getLogger().log(logging::LoggerLevel::LOGGER_LEVEL_INFO, getName(), "Start updating %s. please wait, this prozess is taking some time!", type.c_str());
|
||||
})
|
||||
.onEnd([&]() {
|
||||
system.getLogger().log(logging::LoggerLevel::LOGGER_LEVEL_INFO, getName(), "OTA End");
|
||||
})
|
||||
.onProgress([&](unsigned int progress, unsigned int total) {
|
||||
system.getLogger().log(logging::LoggerLevel::LOGGER_LEVEL_INFO, getName(), "Progress: %f", (progress / (total / 100)));
|
||||
})
|
||||
.onError([&](ota_error_t error) {
|
||||
String error_str;
|
||||
if (error == OTA_AUTH_ERROR) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue