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

Commit 7db4a62

Browse files
authored
Fix Codespell complaints
1 parent 1dfedfe commit 7db4a62

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ This library enables you to use Interrupt from Hardware Timers on on RP2040-base
8787

8888
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**).
8989

90-
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.
90+
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.
9191

9292
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.
9393

@@ -249,7 +249,7 @@ The RPI_PICO system timer peripheral provides a global microsecond timebase for
249249

250250
---
251251

252-
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.
252+
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.
253253
This important feature is absolutely necessary for mission-critical tasks.
254254

255255
The `ISR_Timer_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
@@ -49,7 +49,7 @@ lib_deps =
4949
build_flags =
5050
; set your debug output (default=Serial)
5151
; -D DEBUG_ESP_PORT=Serial
52-
; comment the folowing line to enable WiFi debugging
52+
; comment the following line to enable WiFi debugging
5353
; -D NDEBUG
5454

5555
[env:portenta_h7_m7]

0 commit comments

Comments
 (0)