You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 29, 2023. It is now read-only.
@@ -1065,7 +1065,7 @@ The following is the sample terminal output when running example [SAMD21_MultiTi
1065
1065
1066
1066
```
1067
1067
Starting SAMD21_MultiTimers on SAMD_NANO_33_IOT
1068
-
SAMDTimerInterrupt v1.10.0
1068
+
SAMDTimerInterrupt v1.10.1
1069
1069
CPU Frequency = 48 MHz
1070
1070
[TISR] _period = 20000.00 , frequency = 50.00
1071
1071
[TISR] _timerNumber = 0
@@ -1181,6 +1181,7 @@ Submit issues to: [SAMD_TimerInterrupt issues](https://github.com/khoih-prog/SAM
1181
1181
13. Add functions `attachInterruptInterval_MS()` and `setInterval_MS()`
1182
1182
14. Avoid conflict with Servo library. Check [Cannot use TimerInterrupt_Generic Library in the same time than Servo Library #11](https://github.com/khoih-prog/TimerInterrupt_Generic/discussions/11)
Copy file name to clipboardExpand all lines: changelog.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@
12
12
## Table of Contents
13
13
14
14
*[Changelog](#changelog)
15
+
*[Releases v1.10.1](#releases-v1101)
15
16
*[Releases v1.10.0](#releases-v1100)
16
17
*[Releases v1.9.0](#releases-v190)
17
18
*[Releases v1.8.0](#releases-v180)
@@ -32,10 +33,15 @@
32
33
33
34
## Changelog
34
35
36
+
### Releases v1.10.1
37
+
38
+
1. Using float instead of ulong for interval
39
+
2. Prevent overflow of SAMD51 TCx by flagging error
40
+
35
41
### Releases v1.10.0
36
42
37
43
1. Avoid conflict with Servo library. Check [Cannot use TimerInterrupt_Generic Library in the same time than Servo Library #11](https://github.com/khoih-prog/TimerInterrupt_Generic/discussions/11)
38
-
2. Prevent overflow of TCx by flagging error
44
+
2. Prevent overflow of SAMD21 TCx by flagging error
"description": "This library enables you to use Interrupt from Hardware Timers on SAMD-based boards. It now supports 16 ISR-based timers, while consuming only 1 Hardware Timer. Timers' interval is very long (ulong millisecs). The most important feature is they're ISR-based timers. Therefore, their executions are not blocked by bad-behaving functions or tasks. This important feature is absolutely necessary for mission-critical tasks. These hardware timers, using interrupt, still work even if other functions are blocking. Moreover, they are much more precise (certainly depending on clock frequency accuracy) than other software timers using millis() or micros(). That's necessary if you need to measure some data requiring better accuracy. SAMD21 now can use 6 Timers",
sentence=This library enables you to use Interrupt from Hardware Timers on SAMD-based boards such as SAMD21 Nano-33-IoT, Adafruit SAMD51 Itsy-Bitsy M4, SeeedStudio XIAO, Sparkfun SAMD51_MICROMOD, etc.
0 commit comments