From 5ccafe608b3c1b2d7edd72f19aef8136eec98325 Mon Sep 17 00:00:00 2001 From: Khoi Hoang <57012152+khoih-prog@users.noreply.github.com> Date: Fri, 18 Nov 2022 01:29:20 -0500 Subject: [PATCH] Fix `Codespell` complaints --- README.md | 8 ++++---- changelog.md | 2 +- library.json | 2 +- library.properties | 2 +- platformio/platformio.ini | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index a05ba31..c30d5da 100644 --- a/README.md +++ b/README.md @@ -159,7 +159,7 @@ How to use #include //https://github.com/khoih-prog/ESP_DoubleResetDetector // Number of seconds after reset during which a -// subseqent reset will be considered a double reset. +// subsequent reset will be considered a double reset. #define DRD_TIMEOUT 10 // RTC Memory Address for the DoubleResetDetector to use @@ -539,7 +539,7 @@ Submit issues to: [ESP_DoubleResetDetector issues](https://github.com/khoih-prog 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) 3. Add support to `ESP32_C3`, `ESP32_S2` 4. Add support to `ESP32_S3` using ESP32 core v2.0.2+ -5. Add waitingForDRD() function to signal in DRD wating period +5. Add waitingForDRD() function to signal in DRD waiting period 6. Fix ESP32 chipID for example`ConfigOnDoubleReset` 7. Remove dependency on `LittleFS_esp32` library to prevent PIO error when using new ESP32 core v1.0.6+ @@ -549,8 +549,8 @@ Submit issues to: [ESP_DoubleResetDetector issues](https://github.com/khoih-prog ### Contributions and thanks -1. Thanks to [zobix](https://github.com/zobix) for report the bug in [Isssue 2](https://github.com/khoih-prog/ESP_DoubleResetDetector/issues/2) -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 +1. Thanks to [zobix](https://github.com/zobix) for report the bug in [Issue 2](https://github.com/khoih-prog/ESP_DoubleResetDetector/issues/2) +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 diff --git a/changelog.md b/changelog.md index ade2fbc..1717575 100644 --- a/changelog.md +++ b/changelog.md @@ -36,7 +36,7 @@ ### Releases v1.3.1 -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) +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) 2. Add example [checkWaitingDRD](https://github.com/khoih-prog/ESP_DoubleResetDetector/tree/master/examples/checkWaitingDRD) to demo how to use the new feature. ### Releases v1.3.0 diff --git a/library.json b/library.json index 9489d85..0274edb 100644 --- a/library.json +++ b/library.json @@ -2,7 +2,7 @@ "name": "ESP_DoubleResetDetector", "version": "1.3.2", "keywords": "rtc, eeprom, littlefs, spiffs, reset, data, esp32, esp32-c3, esp32-s2, esp32-s3, esp8266, double-reset, detector, double-reset-detector", - "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", + "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", "authors": { "name": "Khoi Hoang", diff --git a/library.properties b/library.properties index 7316169..56e7f55 100644 --- a/library.properties +++ b/library.properties @@ -4,7 +4,7 @@ author=Khoi Hoang maintainer=Khoi Hoang license=MIT sentence=Library to detect a double reset within a predetermined time, using RTC Memory, EEPROM, LittleFS or SPIFFS for ESP8266 and ESP32 -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 +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 category=Device Control url=https://github.com/khoih-prog/ESP_DoubleResetDetector architectures=esp8266,esp32 diff --git a/platformio/platformio.ini b/platformio/platformio.ini index f2ff255..db525c8 100644 --- a/platformio/platformio.ini +++ b/platformio/platformio.ini @@ -38,7 +38,7 @@ lib_deps = build_flags = ; set your debug output (default=Serial) -D DEBUG_ESP_PORT=Serial -; comment the folowing line to enable WiFi debugging +; comment the following line to enable WiFi debugging -D NDEBUG [env:ESP8266]