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

Commit 5ccafe6

Browse files
authored
Fix Codespell complaints
1 parent 73748f9 commit 5ccafe6

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ How to use
159159
#include <ESP_DoubleResetDetector.h> //https://github.com/khoih-prog/ESP_DoubleResetDetector
160160

161161
// Number of seconds after reset during which a
162-
// subseqent reset will be considered a double reset.
162+
// subsequent reset will be considered a double reset.
163163
#define DRD_TIMEOUT 10
164164

165165
// RTC Memory Address for the DoubleResetDetector to use
@@ -539,7 +539,7 @@ Submit issues to: [ESP_DoubleResetDetector issues](https://github.com/khoih-prog
539539
2. Similar features for Arduino (UNO, Mega, SAM DUE, SAMD21/SAMD51, nRF52, STM32, Teensy, etc.). Look at [**DoubleResetDetector_Generic**](https://github.com/khoih-prog/DoubleResetDetector_Generic)
540540
3. Add support to `ESP32_C3`, `ESP32_S2`
541541
4. Add support to `ESP32_S3` using ESP32 core v2.0.2+
542-
5. Add waitingForDRD() function to signal in DRD wating period
542+
5. Add waitingForDRD() function to signal in DRD waiting period
543543
6. Fix ESP32 chipID for example`ConfigOnDoubleReset`
544544
7. Remove dependency on `LittleFS_esp32` library to prevent PIO error when using new ESP32 core v1.0.6+
545545

@@ -549,8 +549,8 @@ Submit issues to: [ESP_DoubleResetDetector issues](https://github.com/khoih-prog
549549

550550
### Contributions and thanks
551551

552-
1. Thanks to [zobix](https://github.com/zobix) for report the bug in [Isssue 2](https://github.com/khoih-prog/ESP_DoubleResetDetector/issues/2)
553-
1. Thanks to [Tochi Moreno](https://github.com/tochimoreno) for enhancement request in [DRD is waiting for a double reset? #14](https://github.com/khoih-prog/ESP_DoubleResetDetector/discussions/14) leading to v1.3.1 to add `waitingForDRD()` function to signal in DRD wating period
552+
1. Thanks to [zobix](https://github.com/zobix) for report the bug in [Issue 2](https://github.com/khoih-prog/ESP_DoubleResetDetector/issues/2)
553+
1. Thanks to [Tochi Moreno](https://github.com/tochimoreno) for enhancement request in [DRD is waiting for a double reset? #14](https://github.com/khoih-prog/ESP_DoubleResetDetector/discussions/14) leading to v1.3.1 to add `waitingForDRD()` function to signal in DRD waiting period
554554

555555

556556
<table>

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
### Releases v1.3.1
3838

39-
1. Add waitingForDRD() function to signal in DRD wating period. Check [DRD is waiting for a double reset? #14](https://github.com/khoih-prog/ESP_DoubleResetDetector/discussions/14)
39+
1. Add waitingForDRD() function to signal in DRD waiting period. Check [DRD is waiting for a double reset? #14](https://github.com/khoih-prog/ESP_DoubleResetDetector/discussions/14)
4040
2. Add example [checkWaitingDRD](https://github.com/khoih-prog/ESP_DoubleResetDetector/tree/master/examples/checkWaitingDRD) to demo how to use the new feature.
4141

4242
### Releases v1.3.0

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ESP_DoubleResetDetector",
33
"version": "1.3.2",
44
"keywords": "rtc, eeprom, littlefs, spiffs, reset, data, esp32, esp32-c3, esp32-s2, esp32-s3, esp8266, double-reset, detector, double-reset-detector",
5-
"description": "Library to detect a double reset within a predetermined time, using RTC Memory, EEPROM, LittleFS or SPIFFS for ESP8266 and ESP32. 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",
5+
"description": "Library to detect a double reset within a predetermined time, using RTC Memory, EEPROM, LittleFS or SPIFFS for ESP8266 and ESP32. 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 and ESP32_S3",
66
"authors":
77
{
88
"name": "Khoi Hoang",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author=Khoi Hoang
44
maintainer=Khoi Hoang <[email protected]>
55
license=MIT
66
sentence=Library to detect a double 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
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 and ESP32_S3
88
category=Device Control
99
url=https://github.com/khoih-prog/ESP_DoubleResetDetector
1010
architectures=esp8266,esp32

platformio/platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ lib_deps =
3838
build_flags =
3939
; set your debug output (default=Serial)
4040
-D DEBUG_ESP_PORT=Serial
41-
; comment the folowing line to enable WiFi debugging
41+
; comment the following line to enable WiFi debugging
4242
-D NDEBUG
4343

4444
[env:ESP8266]

0 commit comments

Comments
 (0)