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

Commit bdf0580

Browse files
authored
Fix Codespell complaints
1 parent 83673e8 commit bdf0580

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ This library enables you to use Interrupt from Hardware Timers on an ESP32-based
8585

8686
As **Hardware Timers are rare, and very precious assets** of any board, this library now enables you to use up to **16 ISR-based Timers, while consuming only 1 Hardware Timer**. Timers' interval is very long (**ulong millisecs**).
8787

88-
Now with these new **16 ISR-based timers**, the maximum interval is **practically unlimited** (limited only by unsigned long miliseconds) while **the accuracy is nearly perfect** compared to software timers.
88+
Now with these new **16 ISR-based timers**, the maximum interval is **practically unlimited** (limited only by unsigned long milliseconds) while **the accuracy is nearly perfect** compared to software timers.
8989

9090
The most important feature is they're ISR-based timers. Therefore, their executions are **not blocked by bad-behaving functions / tasks**. This important feature is absolutely necessary for mission-critical tasks.
9191

@@ -279,7 +279,7 @@ Look in file [**adc_common.c**](https://github.com/espressif/esp-idf/blob/master
279279
---
280280

281281

282-
Now with these new `16 ISR-based timers` (while consuming only **1 hardware timer**), the maximum interval is practically unlimited (limited only by unsigned long miliseconds). The accuracy is nearly perfect compared to software timers. The most important feature is they're ISR-based timers Therefore, their executions are not blocked by bad-behaving functions / tasks.
282+
Now with these new `16 ISR-based timers` (while consuming only **1 hardware timer**), the maximum interval is practically unlimited (limited only by unsigned long milliseconds). The accuracy is nearly perfect compared to software timers. The most important feature is they're ISR-based timers Therefore, their executions are not blocked by bad-behaving functions / tasks.
283283
This important feature is absolutely necessary for mission-critical tasks.
284284

285285
The [**ISR_16_Timers_Array_Complex**](examples/ISR_16_Timers_Array_Complex) example will demonstrate the nearly perfect accuracy compared to software timers by printing the actual elapsed millisecs of each type of timers.

platformio/platformio.ini

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

4545

0 commit comments

Comments
 (0)