1
mirror of https://github.com/rvdbreemen/OTGW-firmware synced 2024-11-16 04:33:49 +01:00

setserver moved to other line

This commit is contained in:
Robert van den Breemen 2021-09-17 00:17:37 +02:00
parent 9c79ca5a8c
commit 8359c6756e
2 changed files with 8 additions and 8 deletions

View File

@ -137,7 +137,6 @@ void startNTP(){
if (!settingNTPenable) return;
setDebug(NONE);
setServer(CSTR(settingNTPhostname));
if (settingNTPtimezone.length()==0) settingNTPtimezone = "Europe/Amsterdam"; //set back to default timezone
@ -154,6 +153,7 @@ void startNTP(){
}
myTZ.setDefault();
setServer(CSTR(settingNTPhostname));
updateNTP(); //force NTP sync
//active wait for sync for 60 seconds
DECLARE_TIMER_SEC(timeoutNTPsync, 60, CATCH_UP_MISSED_TICKS);

View File

@ -2,15 +2,15 @@
#define _VERSION_MAJOR 0
#define _VERSION_MINOR 8
#define _VERSION_PATCH 7
#define _VERSION_BUILD 1088
#define _VERSION_GITHASH "12da1fc"
#define _VERSION_BUILD 1089
#define _VERSION_GITHASH "9c79ca5"
#define _VERSION_PRERELEASE beta
#define _VERSION_DATE "16-09-2021"
#define _VERSION_TIME "23:40:45"
#define _VERSION_TIME "23:50:25"
#define _SEMVER_CORE "0.8.7"
#define _SEMVER_BUILD "0.8.7+1088"
#define _SEMVER_GITHASH "0.8.7+12da1fc"
#define _SEMVER_FULL "0.8.7-beta+12da1fc"
#define _SEMVER_BUILD "0.8.7+1089"
#define _SEMVER_GITHASH "0.8.7+9c79ca5"
#define _SEMVER_FULL "0.8.7-beta+9c79ca5"
#define _SEMVER_NOBUILD "0.8.7-beta (16-09-2021)"
#define _VERSION "0.8.7-beta+12da1fc (16-09-2021)"
#define _VERSION "0.8.7-beta+9c79ca5 (16-09-2021)"
//The version information is created automatically, more information here: https://github.com/rvdbreemen/autoinc-semver