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 207e05e commit 7798c81Copy full SHA for 7798c81
examples/Tools/CheckFirmwareVersion/CheckFirmwareVersion.ino
@@ -43,7 +43,7 @@ void setup() {
43
44
// Check if the latest version is installed
45
Serial.println();
46
- if (fv == latestFv) {
+ if (fv >= latestFv) {
47
Serial.println("Check result: PASSED");
48
} else {
49
Serial.println("Check result: NOT PASSED");
src/WiFi.h
@@ -21,7 +21,7 @@
21
#ifndef WiFi_h
22
#define WiFi_h
23
24
-#define WIFI_FIRMWARE_LATEST_VERSION "1.2.0"
+#define WIFI_FIRMWARE_LATEST_VERSION "1.2.1"
25
26
#include <inttypes.h>
27
0 commit comments