Skip to content

Commit

Permalink
WiFiTime: remove WIFI_FIRMWARE_LATEST_VERSION check
Browse files Browse the repository at this point in the history
  • Loading branch information
pennam committed Nov 26, 2024
1 parent 64ffce9 commit 0afd739
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions libraries/WiFiS3/examples/WiFiTime/WiFiTime.ino
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,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 0afd739

Please sign in to comment.