You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (String(WiFi.firmwareVersion()) < String("1.4.1")) {
259
257
_ota_cap = false;
260
-
DEBUG_WARNING("ArduinoIoTCloudTCP::%s In order to be ready for cloud OTA, NINA firmware needs to be >= 1.4.1, current %s", __FUNCTION__, nina_fw_version.c_str());
258
+
DEBUG_WARNING("ArduinoIoTCloudTCP::%s In order to be ready for cloud OTA, NINA firmware needs to be >= 1.4.1, current %s", __FUNCTION__, WiFi.firmwareVersion());
261
259
}
262
260
else {
263
261
_ota_cap = true;
264
262
}
265
263
#endif/* OTA_STORAGE_SNU */
266
264
265
+
#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());
268
+
return0;
269
+
}
270
+
#endif/* BOARD_HAS_OFFLOADED_ECCX08 */
271
+
267
272
#ifdef ARDUINO_ARCH_SAMD
268
273
/* Since we do not control what code the user inserts
269
274
* between ArduinoIoTCloudTCP::begin() and the first
270
275
* call to ArduinoIoTCloudTCP::update() it is wise to
0 commit comments