Skip to content

Commit 7798c81

Browse files
committed
Bump latest version, and use >= in check
1 parent 207e05e commit 7798c81

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/Tools/CheckFirmwareVersion/CheckFirmwareVersion.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ void setup() {
4343

4444
// Check if the latest version is installed
4545
Serial.println();
46-
if (fv == latestFv) {
46+
if (fv >= latestFv) {
4747
Serial.println("Check result: PASSED");
4848
} else {
4949
Serial.println("Check result: NOT PASSED");

src/WiFi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#ifndef WiFi_h
2222
#define WiFi_h
2323

24-
#define WIFI_FIRMWARE_LATEST_VERSION "1.2.0"
24+
#define WIFI_FIRMWARE_LATEST_VERSION "1.2.1"
2525

2626
#include <inttypes.h>
2727

0 commit comments

Comments
 (0)