Skip to content

Commit 0afd739

Browse files
committed
WiFiTime: remove WIFI_FIRMWARE_LATEST_VERSION check
1 parent 64ffce9 commit 0afd739

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

libraries/WiFiS3/examples/WiFiTime/WiFiTime.ino

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

4242
// check for the WiFi module:
4343
if (WiFi.status() == WL_NO_MODULE) {
44-
Serial.println("Communication with WiFi module failed. freeze !");
45-
// don't continue
46-
while (true);
47-
}
48-
49-
String fv = WiFi.firmwareVersion();
50-
if (fv < WIFI_FIRMWARE_LATEST_VERSION) {
51-
Serial.println("Please upgrade to the WiFi USB bridge firmware. freeze !");
44+
Serial.println("Communication with WiFi module failed.");
5245
// don't continue
5346
while (true);
5447
}

0 commit comments

Comments
 (0)