Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit 3650473

Browse files
authored
v1.3.2 to fix ESP32 chipID for ConfigOnMultiReset
### Releases v1.3.2 1. Fix ESP32 chipID for example `ConfigOnMultiReset` 2. Remove dependency on `LittleFS_esp32` library to prevent PIO error when using new ESP32 core v1.0.6+
1 parent 8d32a65 commit 3650473

File tree

8 files changed

+62
-59
lines changed

8 files changed

+62
-59
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p
1515
Please ensure to specify the following:
1616

1717
* Arduino IDE version (e.g. 1.8.19) or Platform.io version
18-
* `ESP8266` or `ESP32` Core Version (e.g. ESP8266 core v3.0.2 or ESP32 v2.0.2)
18+
* `ESP8266` or `ESP32` Core Version (e.g. ESP8266 core v3.0.2 or ESP32 v2.0.4)
1919
* Contextual information (e.g. what you were trying to achieve)
2020
* Simplest possible steps to reproduce
2121
* Anything that might be relevant in your opinion, such as:
@@ -29,7 +29,7 @@ Please ensure to specify the following:
2929
Arduino IDE version: 1.8.19
3030
ESP8266 Core Version 3.0.2
3131
OS: Ubuntu 20.04 LTS
32-
Linux kh-Inspiron-3593 5.4.0-100-generic #113-Ubuntu SMP Thu Feb 3 18:43:29 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
32+
Linux xy-Inspiron-3593 5.15.0-46-generic #49~20.04.1-Ubuntu SMP Thu Aug 4 19:15:44 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
3333
3434
Context:
3535
I encountered a non-response while trying to press the reset button twice.

README.md

Lines changed: 29 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![arduino-library-badge](https://www.ardu-badge.com/badge/ESP_MultiResetDetector.svg?)](https://www.ardu-badge.com/ESP_MultiResetDetector)
44
[![GitHub release](https://img.shields.io/github/release/khoih-prog/ESP_MultiResetDetector.svg)](https://github.com/khoih-prog/ESP_MultiResetDetector/releases)
5-
[![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/khoih-prog/ESP_MultiResetDetector/blob/master/LICENSE)
5+
[![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/khoih-prog/ESP_MultiResetDetector/blob/main/LICENSE)
66
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](#Contributing)
77
[![GitHub issues](https://img.shields.io/github/issues/khoih-prog/ESP_MultiResetDetector.svg)](http://github.com/khoih-prog/ESP_MultiResetDetector/issues)
88

@@ -124,10 +124,9 @@ This [**ESP_MultiResetDetector** library](https://github.com/khoih-prog/ESP_Mult
124124
## Prerequisites
125125

126126
1. [`Arduino IDE 1.8.19+` for Arduino](https://github.com/arduino/Arduino). [![GitHub release](https://img.shields.io/github/release/arduino/Arduino.svg)](https://github.com/arduino/Arduino/releases/latest)
127-
2. [`ESP32 Core 2.0.2+`](https://github.com/espressif/arduino-esp32) for ESP32-based boards. [![Latest release](https://img.shields.io/github/release/espressif/arduino-esp32.svg)](https://github.com/espressif/arduino-esp32/releases/latest/)
127+
2. [`ESP32 Core 2.0.4+`](https://github.com/espressif/arduino-esp32) for ESP32-based boards. [![Latest release](https://img.shields.io/github/release/espressif/arduino-esp32.svg)](https://github.com/espressif/arduino-esp32/releases/latest/)
128128
3. [`ESP8266 Core 3.0.2+`](https://github.com/esp8266/Arduino) for ESP8266-based boards. [![Latest release](https://img.shields.io/github/release/esp8266/Arduino.svg)](https://github.com/esp8266/Arduino/releases/latest/). SPIFFS is deprecated from ESP8266 core 2.7.1+, to use LittleFS.
129-
130-
4. [`LittleFS_esp32 v1.0.6+`](https://github.com/lorol/LITTLEFS) for ESP32-based boards using LittleFS with ESP32 core v1.0.5-. To install, check [![arduino-library-badge](https://www.ardu-badge.com/badge/LittleFS_esp32.svg?)](https://www.ardu-badge.com/LittleFS_esp32). **Notice**: This [`LittleFS_esp32 library`](https://github.com/lorol/LITTLEFS) has been integrated to Arduino [ESP32 core v1.0.6+](https://github.com/espressif/arduino-esp32/tree/master/libraries/LITTLEFS) and you don't need to install it if using ESP32 core v1.0.6+
129+
4. [`LittleFS_esp32 v1.0.6+`](https://github.com/lorol/LITTLEFS) for ESP32-based boards using LittleFS with ESP32 core **v1.0.5-**. To install, check [![arduino-library-badge](https://www.ardu-badge.com/badge/LittleFS_esp32.svg?)](https://www.ardu-badge.com/LittleFS_esp32). **Notice**: This [`LittleFS_esp32 library`](https://github.com/lorol/LITTLEFS) has been integrated to Arduino [ESP32 core v1.0.6+](https://github.com/espressif/arduino-esp32/tree/master/libraries/LITTLEFS) and **you don't need to install it if using ESP32 core v1.0.6+**
131130

132131
---
133132

@@ -140,9 +139,9 @@ The best and easiest way is to use `Arduino Library Manager`. Search for `ESP_Mu
140139
### Manual Install
141140

142141
1. Navigate to [ESP_MultiResetDetector](https://github.com/khoih-prog/ESP_MultiResetDetector) page.
143-
2. Download the latest release `ESP_MultiResetDetector-master.zip`.
144-
3. Extract the zip file to `ESP_MultiResetDetector-master` directory
145-
4. Copy the whole `ESP_MultiResetDetector-master` folder to Arduino libraries' directory such as `~/Arduino/libraries/`.
142+
2. Download the latest release `ESP_MultiResetDetector-main.zip`.
143+
3. Extract the zip file to `ESP_MultiResetDetector-main` directory
144+
4. Copy the whole `ESP_MultiResetDetector-main` folder to Arduino libraries' directory such as `~/Arduino/libraries/`.
146145

147146
### VS Code & PlatformIO:
148147

@@ -325,8 +324,8 @@ This is terminal debug output when running [ESP32_FSWebServer_DRD](https://githu
325324

326325
```cpp
327326
Starting ESP32_FSWebServer_DRD with DoubleResetDetect using SPIFFS on ESP32_DEV
328-
ESP_WiFiManager v1.10.1
329-
ESP_MultiResetDetector v1.3.1
327+
ESP_WiFiManager v1.11.0
328+
ESP_MultiResetDetector v1.3.2
330329
FS File: /ConfigSW.json, size: 150B
331330
FS File: /CanadaFlag_1.png, size: 40.25KB
332331
FS File: /CanadaFlag_2.png, size: 8.12KB
@@ -393,7 +392,7 @@ This is terminal debug output when running [minimal](examples/minimal) on ***ESP
393392

394393
```
395394
Starting ESP_MultiResetDetector minimal on ESP32_DEV using LittleFS
396-
ESP_MultiResetDetector v1.3.1
395+
ESP_MultiResetDetector v1.3.2
397396
/home/kh/Arduino/libraries/LITTLEFS-master/src/lfs.c:1003:error: Corrupted dir pair at {0x0, 0x1}
398397
E (241) esp_littlefs: mount failed, (-84)
399398
E (245) esp_littlefs: Failed to initialize LittleFS
@@ -414,7 +413,7 @@ Saving config file OK
414413
415414
```
416415
Starting ESP_MultiResetDetector minimal on ESP32_DEV using LittleFS
417-
ESP_MultiResetDetector v1.3.1
416+
ESP_MultiResetDetector v1.3.2
418417
LittleFS Flag read = 0xFFFE0001
419418
multiResetDetectorFlag = 0xFFFE0001
420419
lowerBytes = 0x0001, upperBytes = 0x0001
@@ -429,7 +428,7 @@ No Multi Reset Detected
429428
430429
```
431430
Starting ESP_MultiResetDetector minimal on ESP32_DEV using LittleFS
432-
ESP_MultiResetDetector v1.3.1
431+
ESP_MultiResetDetector v1.3.2
433432
LittleFS Flag read = 0xFFFD0002
434433
multiResetDetectorFlag = 0xFFFD0002
435434
lowerBytes = 0x0002, upperBytes = 0x0002
@@ -444,7 +443,7 @@ No Multi Reset Detected
444443
445444
```
446445
Starting ESP_MultiResetDetector minimal on ESP32_DEV using LittleFS
447-
ESP_MultiResetDetector v1.3.1
446+
ESP_MultiResetDetector v1.3.2
448447
LittleFS Flag read = 0xFFFC0003
449448
multiResetDetectorFlag = 0xFFFC0003
450449
lowerBytes = 0x0003, upperBytes = 0x0003
@@ -459,7 +458,7 @@ No Multi Reset Detected
459458
460459
```
461460
Starting ESP_MultiResetDetector minimal on ESP32_DEV using LittleFS
462-
ESP_MultiResetDetector v1.3.1
461+
ESP_MultiResetDetector v1.3.2
463462
LittleFS Flag read = 0xFFFB0004
464463
multiResetDetectorFlag = 0xFFFB0004
465464
lowerBytes = 0x0004, upperBytes = 0x0004
@@ -474,7 +473,7 @@ No Multi Reset Detected
474473
475474
```
476475
Starting ESP_MultiResetDetector minimal on ESP32_DEV using LittleFS
477-
ESP_MultiResetDetector v1.3.1
476+
ESP_MultiResetDetector v1.3.2
478477
LittleFS Flag read = 0xFFFA0005
479478
multiResetDetectorFlag = 0xFFFA0005
480479
lowerBytes = 0x0005, upperBytes = 0x0005
@@ -488,7 +487,7 @@ Multi Reset Detected
488487
489488
```
490489
Starting ESP_MultiResetDetector minimal on ESP32_DEV using LittleFS
491-
ESP_MultiResetDetector v1.3.1
490+
ESP_MultiResetDetector v1.3.2
492491
LittleFS Flag read = 0xFFFB0004
493492
multiResetDetectorFlag = 0xFFFB0004
494493
lowerBytes = 0x0004, upperBytes = 0x0004
@@ -507,7 +506,7 @@ Saving config file OK
507506
```
508507

509508
Starting ESP_MultiResetDetector minimal on ESP32_DEV using LittleFS
510-
ESP_MultiResetDetector v1.3.1
509+
ESP_MultiResetDetector v1.3.2
511510
LittleFS Flag read = 0xFFFE0001
512511
multiResetDetectorFlag = 0xFFFE0001
513512
lowerBytes = 0x0001, upperBytes = 0x0001
@@ -530,7 +529,7 @@ This is terminal debug output when running [minimal](examples/minimal) on ***ESP
530529
531530
```
532531
Starting ESP_MultiResetDetector minimal on ESP8266_NODEMCU using LittleFS
533-
ESP_MultiResetDetector v1.3.1
532+
ESP_MultiResetDetector v1.3.2
534533
multiResetDetectorFlag = 0x00000000
535534
lowerBytes = 0x0000, upperBytes = 0xFFFF
536535
lowerBytes = 0x0000, upperBytes = 0xFFFF
@@ -545,7 +544,7 @@ No Multi Reset Detected
545544
546545
```
547546
Starting ESP_MultiResetDetector minimal on ESP8266_NODEMCU using LittleFS
548-
ESP_MultiResetDetector v1.3.1
547+
ESP_MultiResetDetector v1.3.2
549548
LittleFS Flag read = 0xFFFE0001
550549
multiResetDetectorFlag = 0xFFFE0001
551550
lowerBytes = 0x0001, upperBytes = 0x0001
@@ -560,7 +559,7 @@ No Multi Reset Detected
560559
561560
```
562561
Starting ESP_MultiResetDetector minimal on ESP8266_NODEMCU using LittleFS
563-
ESP_MultiResetDetector v1.3.1
562+
ESP_MultiResetDetector v1.3.2
564563
LittleFS Flag read = 0xFFFD0002
565564
multiResetDetectorFlag = 0xFFFD0002
566565
lowerBytes = 0x0002, upperBytes = 0x0002
@@ -575,7 +574,7 @@ No Multi Reset Detected
575574
576575
```
577576
Starting ESP_MultiResetDetector minimal on ESP8266_NODEMCU using LittleFS
578-
ESP_MultiResetDetector v1.3.1
577+
ESP_MultiResetDetector v1.3.2
579578
LittleFS Flag read = 0xFFFC0003
580579
multiResetDetectorFlag = 0xFFFC0003
581580
lowerBytes = 0x0003, upperBytes = 0x0003
@@ -590,7 +589,7 @@ No Multi Reset Detected
590589
591590
```
592591
Starting ESP_MultiResetDetector minimal on ESP8266_NODEMCU using LittleFS
593-
ESP_MultiResetDetector v1.3.1
592+
ESP_MultiResetDetector v1.3.2
594593
LittleFS Flag read = 0xFFFB0004
595594
multiResetDetectorFlag = 0xFFFB0004
596595
lowerBytes = 0x0004, upperBytes = 0x0004
@@ -604,7 +603,7 @@ Saving config file OK
604603
605604
```
606605
Starting ESP_MultiResetDetector minimal on ESP8266_NODEMCU using LittleFS
607-
ESP_MultiResetDetector v1.3.1
606+
ESP_MultiResetDetector v1.3.2
608607
LittleFS Flag read = 0xFFFA0005
609608
multiResetDetectorFlag = 0xFFFA0005
610609
lowerBytes = 0x0005, upperBytes = 0x0005
@@ -618,7 +617,7 @@ Multi Reset Detected
618617
619618
```
620619
Starting ESP_MultiResetDetector minimal on ESP8266_NODEMCU using LittleFS
621-
ESP_MultiResetDetector v1.3.1
620+
ESP_MultiResetDetector v1.3.2
622621
LittleFS Flag read = 0xFFFB0004
623622
multiResetDetectorFlag = 0xFFFB0004
624623
lowerBytes = 0x0004, upperBytes = 0x0004
@@ -636,7 +635,7 @@ Saving config file OK
636635
637636
```
638637
Starting ESP_MultiResetDetector minimal on ESP8266_NODEMCU using LittleFS
639-
ESP_MultiResetDetector v1.3.1
638+
ESP_MultiResetDetector v1.3.2
640639
LittleFS Flag read = 0xFFFE0001
641640
multiResetDetectorFlag = 0xFFFE0001
642641
lowerBytes = 0x0001, upperBytes = 0x0001
@@ -656,8 +655,8 @@ This is terminal debug output when running [ESPAsync_WiFi](https://github.com/kh
656655
657656
```
658657
Starting ESPAsync_WiFi using LittleFS on ESP32S3_DEV
659-
ESPAsync_WiFiManager_Lite v1.8.2
660-
ESP_MultiResetDetector v1.3.1
658+
ESPAsync_WiFiManager_Lite v1.9.0
659+
ESP_MultiResetDetector v1.3.2
661660
LittleFS Flag read = 0xFFFC0003
662661
multiResetDetectorFlag = 0xFFFC0003
663662
lowerBytes = 0x0003, upperBytes = 0x0003
@@ -775,6 +774,8 @@ Submit issues to: [ESP_MultiResetDetector issues](https://github.com/khoih-prog/
775774
2. Add support to `ESP32_C3`, `ESP32_S2`
776775
3. Add support to `ESP32_S3` using ESP32 core v2.0.2+
777776
4. Add waitingForMRD() function to signal in MRD wating period.
777+
6. Fix ESP32 chipID for example`ConfigOnMultiReset`
778+
7. Remove dependency on `LittleFS_esp32` library to prevent PIO error when using new ESP32 core v1.0.6+
778779

779780
---
780781
---
@@ -805,7 +806,7 @@ If you want to contribute to this project:
805806

806807
### License
807808

808-
- The library is licensed under [MIT](https://github.com/khoih-prog/ESP_MultiResetDetector/blob/master/LICENSE)
809+
- The library is licensed under [MIT](https://github.com/khoih-prog/ESP_MultiResetDetector/blob/main/LICENSE)
809810

810811
---
811812

changelog.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![arduino-library-badge](https://www.ardu-badge.com/badge/ESP_MultiResetDetector.svg?)](https://www.ardu-badge.com/ESP_MultiResetDetector)
44
[![GitHub release](https://img.shields.io/github/release/khoih-prog/ESP_MultiResetDetector.svg)](https://github.com/khoih-prog/ESP_MultiResetDetector/releases)
5-
[![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/khoih-prog/ESP_MultiResetDetector/blob/master/LICENSE)
5+
[![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/khoih-prog/ESP_MultiResetDetector/blob/main/LICENSE)
66
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](#Contributing)
77
[![GitHub issues](https://img.shields.io/github/issues/khoih-prog/ESP_MultiResetDetector.svg)](http://github.com/khoih-prog/ESP_MultiResetDetector/issues)
88

@@ -13,6 +13,7 @@
1313

1414

1515
* [Changelog](#changelog)
16+
* [Releases v1.3.2](#releases-v132)
1617
* [Releases v1.3.1](#releases-v131)
1718
* [Releases v1.3.0](#releases-v130)
1819
* [Releases v1.2.1](#releases-v121)
@@ -25,6 +26,11 @@
2526

2627
## Changelog
2728

29+
### Releases v1.3.2
30+
31+
1. Fix ESP32 chipID for example `ConfigOnMultiReset`
32+
2. Remove dependency on `LittleFS_esp32` library to prevent PIO error when using new ESP32 core v1.0.6+
33+
2834
### Releases v1.3.1
2935

3036
1. Add waitingForMRD() function to signal in MRD wating period. Check [DRD is waiting for a double reset? #14](https://github.com/khoih-prog/ESP_DoubleResetDetector/discussions/14)

examples/ConfigOnMultiReset/ConfigOnMultiReset.ino

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,6 @@
101101
#endif
102102
//////
103103

104-
#define ESP_getChipId() ((uint32_t)ESP.getEfuseMac())
105-
106104
#define LED_BUILTIN 2
107105
#define LED_ON HIGH
108106
#define LED_OFF LOW
@@ -202,14 +200,6 @@ MultiResetDetector* mrd;//////
202200
// Onboard LED I/O pin on NodeMCU board
203201
const int PIN_LED = 2; // D4 on NodeMCU and WeMos. GPIO2/ADC12 of ESP32. Controls the onboard LED.
204202

205-
// SSID and PW for Config Portal
206-
String ssid = "ESP_" + String(ESP_getChipId(), HEX);
207-
const char* password = "your_password";
208-
209-
// SSID and PW for your Router
210-
String Router_SSID;
211-
String Router_Pass;
212-
213203
// From v1.1.0
214204
// You only need to format the filesystem once
215205
//#define FORMAT_FILESYSTEM true
@@ -314,6 +304,15 @@ IPAddress APStaticSN = IPAddress(255, 255, 255, 0);
314304

315305
#include <ESP_WiFiManager.h> //https://github.com/khoih-prog/ESP_WiFiManager
316306

307+
// SSID and PW for Config Portal
308+
String ssid = "ESP_" + String(ESP_getChipId(), HEX);
309+
const char* password = "your_password";
310+
311+
// SSID and PW for your Router
312+
String Router_SSID;
313+
String Router_Pass;
314+
315+
317316
// Function Prototypes
318317
uint8_t connectMultiWiFi(void);
319318

library.json

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "ESP_MultiResetDetector",
3-
"version": "1.3.1",
4-
"keywords": "rtc, eeprom, littlefs, spiffs, reset, data, esp32, esp32-c3, esp32-s2, esp32-s3, esp8266, double-reset, multi-reset, detector, double-reset-detector, multi-reset-detector",
5-
"description": "Library to detect a multi reset within a predetermined time, using RTC Memory, EEPROM, LittleFS or SPIFFS for ESP8266 and ESP32",
3+
"version": "1.3.2",
4+
"keywords": "rtc, eeprom, littlefs, spiffs, reset, data, esp32, esp32-c3, esp32-s2, esp32-s3, esp8266, double-reset, multi-reset, detector, double-reset-detector, multi-reset-detector, esp-wifimanager, espasync-wifimanager",
5+
"description": "Library to detect a multi reset within a predetermined time, using RTC Memory, EEPROM, LittleFS or SPIFFS for ESP8266 and ESP32, ESP32_C3, ESP32_S2, ESP32_S3. An alternative start-up mode can be used. One example use is to allow re-configuration of device WiFi credentials",
66
"authors":
77
{
88
"name": "Khoi Hoang",
@@ -24,12 +24,6 @@
2424
},
2525
"dependencies":
2626
[
27-
{
28-
"owner": "lorol",
29-
"name": "LittleFS_esp32",
30-
"version": "^1.0.6",
31-
"platforms": ["espressif32"]
32-
}
3327
],
3428
"frameworks": "arduino",
3529
"platforms": [ "espressif32", "espressif8266" ],

library.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name=ESP_MultiResetDetector
2-
version=1.3.1
2+
version=1.3.2
33
author=Khoi Hoang
44
maintainer=Khoi Hoang <khoih.prog@gmail.com>
55
license=MIT
6-
sentence=Library to detect a multi reset within a predetermined time, using RTC Memory, EEPROM, LittleFS or SPIFFS for ESP8266 and ESP32
7-
paragraph=An alternative start-up mode can be used. One example use is to allow re-configuration of device WiFi credentials. Now supporting ESP32_C3, ESP32_S2 ans ESP32_S3
6+
sentence=Library to detect a multi reset within a predetermined time, using RTC Memory, EEPROM, LittleFS or SPIFFS for ESP8266 and ESP32, ESP32_C3, ESP32_S2, ESP32_S3
7+
paragraph=An alternative start-up mode can be used. One example use is to allow re-configuration of device WiFi credentials
88
category=Device Control
99
url=https://github.com/khoih-prog/ESP_MultiResetDetector
1010
architectures=esp8266,esp32
1111
includes=ESP_MultiResetDetector.h
12-
depends=LittleFS_esp32
12+

platformio/platformio.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@ upload_speed = 921600
2929

3030
; Checks for the compatibility with frameworks and dev/platforms
3131
lib_compat_mode = strict
32+
lib_ldf_mode = chain+
33+
;lib_ldf_mode = deep+
3234

3335
lib_deps =
3436
; PlatformIO 4.x
3537
; LittleFS_esp32@>=1.0.6
3638
; PlatformIO 5.x
37-
lorol/LittleFS_esp32@>=1.0.6
39+
; lorol/LittleFS_esp32@>=1.0.6
3840

3941

4042
build_flags =

src/ESP_MultiResetDetector.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
Built by Khoi Hoang https://github.com/khoih-prog/ESP_MultiResetDetector
1313
Licensed under MIT license
14-
Version: 1.3.1
14+
Version: 1.3.2
1515
1616
Version Modified By Date Comments
1717
------- ----------- ---------- -----------
@@ -21,6 +21,7 @@
2121
1.2.1 K Hoang 26/11/2021 Fix compile error for ESP32 core v1.0.5-
2222
1.3.0 K Hoang 10/02/2022 Add support to new ESP32-S3
2323
1.3.1 K Hoang 04/03/2022 Add waitingForMRD() function to signal in MRD wating period
24+
1.3.2 K Hoang 09/09/2022 Fix ESP32 chipID for example ConfigOnMultiReset
2425
*****************************************************************************************************************************/
2526

2627
#pragma once
@@ -39,13 +40,13 @@
3940
#endif
4041

4142
#ifndef ESP_MULTI_RESET_DETECTOR_VERSION
42-
#define ESP_MULTI_RESET_DETECTOR_VERSION "ESP_MultiResetDetector v1.3.1"
43+
#define ESP_MULTI_RESET_DETECTOR_VERSION "ESP_MultiResetDetector v1.3.2"
4344

4445
#define ESP_MULTI_RESET_DETECTOR_VERSION_MAJOR 1
4546
#define ESP_MULTI_RESET_DETECTOR_VERSION_MINOR 3
46-
#define ESP_MULTI_RESET_DETECTOR_VERSION_PATCH 1
47+
#define ESP_MULTI_RESET_DETECTOR_VERSION_PATCH 2
4748

48-
#define ESP_MULTI_RESET_DETECTOR_VERSION_INT 1003001
49+
#define ESP_MULTI_RESET_DETECTOR_VERSION_INT 1003002
4950
#endif
5051

5152
#define ESP_MULTIRESETDETECTOR_VERSION ESP_MULTI_RESET_DETECTOR_VERSION

0 commit comments

Comments
 (0)