Skip to content

Commit e5a6256

Browse files
authored
Merge pull request #245 from arduino-libraries/update-warning-nina-offload
Fix: Correct required nina-fw version for SSL stack offloading
2 parents 1919728 + 2aca407 commit e5a6256

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ArduinoIoTCloudTCP.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -263,8 +263,8 @@ int ArduinoIoTCloudTCP::begin(bool const enable_watchdog, String brokerAddress,
263263
#endif /* OTA_STORAGE_SNU */
264264

265265
#ifdef BOARD_HAS_OFFLOADED_ECCX08
266-
if (String(WiFi.firmwareVersion()) < String("1.4.3")) {
267-
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());
266+
if (String(WiFi.firmwareVersion()) < String("1.4.4")) {
267+
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());
268268
return 0;
269269
}
270270
#endif /* BOARD_HAS_OFFLOADED_ECCX08 */

0 commit comments

Comments
 (0)