From 2aca407622a4f9b6e635205baef963b70a261b6a Mon Sep 17 00:00:00 2001 From: Alexander Entinger Date: Wed, 28 Apr 2021 07:07:56 +0200 Subject: [PATCH] Since we'll be only using nina-fw:v1.4.4 and forward for SSL offloading the outdated warning concerning v1.4.3 needs to be replaced with 1.4.4. --- src/ArduinoIoTCloudTCP.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ArduinoIoTCloudTCP.cpp b/src/ArduinoIoTCloudTCP.cpp index 6567b0553..5bcdf386f 100644 --- a/src/ArduinoIoTCloudTCP.cpp +++ b/src/ArduinoIoTCloudTCP.cpp @@ -263,8 +263,8 @@ int ArduinoIoTCloudTCP::begin(bool const enable_watchdog, String brokerAddress, #endif /* OTA_STORAGE_SNU */ #ifdef BOARD_HAS_OFFLOADED_ECCX08 - if (String(WiFi.firmwareVersion()) < String("1.4.3")) { - DEBUG_ERROR("ArduinoIoTCloudTCP::%s In order to connect to Arduino IoT Cloud, NINA firmware needs to be >= 1.4.3, current %s", __FUNCTION__, WiFi.firmwareVersion()); + if (String(WiFi.firmwareVersion()) < String("1.4.4")) { + DEBUG_ERROR("ArduinoIoTCloudTCP::%s In order to connect to Arduino IoT Cloud, NINA firmware needs to be >= 1.4.4, current %s", __FUNCTION__, WiFi.firmwareVersion()); return 0; } #endif /* BOARD_HAS_OFFLOADED_ECCX08 */