Skip to content

Commit 8c82960

Browse files
authored
TCP: fix nina-fw minimum required version after certificate update
1 parent 4bc2784 commit 8c82960

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/ArduinoIoTCloudTCP.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ int ArduinoIoTCloudTCP::begin(bool const enable_watchdog, String brokerAddress,
183183
#endif // OTA_ENABLED && !defined(OFFLOADED_DOWNLOAD) && defined(OTA_BASIC_AUTH)
184184

185185
#ifdef BOARD_HAS_OFFLOADED_ECCX08
186-
if (String(WiFi.firmwareVersion()) < String("1.4.4")) {
187-
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());
186+
if (String(WiFi.firmwareVersion()) < String("1.6.0")) {
187+
DEBUG_ERROR("ArduinoIoTCloudTCP::%s In order to connect to Arduino IoT Cloud, NINA firmware needs to be >= 1.6.0, current %s", __FUNCTION__, WiFi.firmwareVersion());
188188
return 0;
189189
}
190190
#endif /* BOARD_HAS_OFFLOADED_ECCX08 */

0 commit comments

Comments
 (0)