We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5033b3 commit 68e7fa2Copy full SHA for 68e7fa2
libraries/SNU/extras/NiNaBoot/NiNaBoot.ino
@@ -138,10 +138,17 @@ int main() {
138
digitalWrite(NINA_RESETN, HIGH);
139
#endif
140
141
+ String nina_fw_version;
142
+
143
if (WiFi.status() == WL_NO_SHIELD) {
144
goto boot;
145
}
146
147
+ nina_fw_version = WiFi.firmwareVersion();
148
+ if (nina_fw_version < "1.4.1") {
149
+ goto boot;
150
+ }
151
152
/* For UPDATE.BIN.LZSS - LZSS compressed binary files. */
153
if (WiFiStorage.exists(UPDATE_FILE_NAME_LZSS))
154
{
0 commit comments