From 97713b2daa0df76d0e68aff08cdcc9e34a5db27c Mon Sep 17 00:00:00 2001 From: Sacha Weatherstone Date: Thu, 12 May 2022 22:45:27 +1000 Subject: [PATCH] Increased NTP update frequency to 12 hours --- src/mesh/http/WiFiAPClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh/http/WiFiAPClient.cpp b/src/mesh/http/WiFiAPClient.cpp index 2aeb23a92..9df72ae1b 100644 --- a/src/mesh/http/WiFiAPClient.cpp +++ b/src/mesh/http/WiFiAPClient.cpp @@ -97,7 +97,7 @@ static int32_t reconnectWiFi() } #endif - return 1024 * 1000; // every 1024 seconds + return 43200 * 1000; // every 12 hours } static Periodic *wifiReconnect;