Skip to content

Commit 3a81b22

Browse files
committed
WiFiPing: remove WIFI_FIRMWARE_LATEST_VERSION check
1 parent 4974e2f commit 3a81b22

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

Diff for: libraries/WiFiS3/examples/WiFiPing/WiFiPing.ino

+1-8
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,7 @@ void setup() {
3636

3737
// check for the WiFi module:
3838
if (WiFi.status() == WL_NO_MODULE) {
39-
Serial.println("Communication with WiFi module failed. freeze !");
40-
// don't continue
41-
while (true);
42-
}
43-
44-
String fv = WiFi.firmwareVersion();
45-
if (fv < WIFI_FIRMWARE_LATEST_VERSION) {
46-
Serial.println("Please upgrade to the WiFi USB bridge firmware. freeze !");
39+
Serial.println("Communication with WiFi module failed.");
4740
// don't continue
4841
while (true);
4942
}

0 commit comments

Comments
 (0)