Skip to content

Commit

Permalink
WiFiPing: remove WIFI_FIRMWARE_LATEST_VERSION check
Browse files Browse the repository at this point in the history
  • Loading branch information
pennam committed Nov 27, 2024
1 parent 4974e2f commit 3a81b22
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions libraries/WiFiS3/examples/WiFiPing/WiFiPing.ino
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,7 @@ void setup() {

// check for the WiFi module:
if (WiFi.status() == WL_NO_MODULE) {
Serial.println("Communication with WiFi module failed. freeze !");
// don't continue
while (true);
}

String fv = WiFi.firmwareVersion();
if (fv < WIFI_FIRMWARE_LATEST_VERSION) {
Serial.println("Please upgrade to the WiFi USB bridge firmware. freeze !");
Serial.println("Communication with WiFi module failed.");
// don't continue
while (true);
}
Expand Down

0 comments on commit 3a81b22

Please sign in to comment.