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

Commit 34fbcaf

Browse files
authored
Fix Codespell complaints
1 parent 28188f0 commit 34fbcaf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ This library enables you to use Interrupt from Hardware Timers on an SAM-DUE-bas
8888

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

91-
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.
91+
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.
9292

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

@@ -293,7 +293,7 @@ Check the new [**multiFileProject** example](examples/multiFileProject) for a `H
293293

294294
## New from v1.0.1
295295

296-
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.
296+
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.
297297
This important feature is absolutely necessary for mission-critical tasks.
298298

299299
The [**ISR_16_Timers_Array**](examples/ISR_16_Timers_Array) and [**ISR_Timer_Complex_Ethernet**](examples/ISR_Timer_Complex_Ethernet) examples will demonstrate the nearly perfect accuracy compared to software timers by printing the actual elapsed millisecs of each type of timers.

platformio/platformio.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ lib_deps =
4444
build_flags =
4545
; set your debug output (default=Serial)
4646
; -D DEBUG_ESP_PORT=Serial
47-
; comment the folowing line to enable WiFi debugging
47+
; comment the following line to enable WiFi debugging
4848
; -D NDEBUG
4949

5050
[env:DUE]

0 commit comments

Comments
 (0)