From 6bd05c0aa38077ae8d40036ec85aa10bdbfafa2c Mon Sep 17 00:00:00 2001 From: geronet1 Date: Wed, 29 Nov 2023 15:55:58 +0100 Subject: [PATCH] W5500 sunrise bugix --- src/app.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app.cpp b/src/app.cpp index 9dca3773..b8813034 100644 --- a/src/app.cpp +++ b/src/app.cpp @@ -300,7 +300,8 @@ void app::updateNtp(void) { void app::tickNtpUpdate(void) { uint32_t nxtTrig = 5; // default: check again in 5 sec #if defined(ETHERNET) - bool isOK = mEth.updateNtpTime(); + bool isOK = false; + mEth.updateNtpTime(); #else bool isOK = mWifi.getNtpTime(); #endif