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.
### 4. Change_Interval on Arduino AVR Mega2560 board
1038
+
### 4. Change_Interval_HF on Arduino AVR Mega2560 board
1039
1039
1040
-
The following is the sample terminal output when running example [Change_Interval_HF](examples/Change_Interval_HF) on **AVR Mega2560** to demonstrate how to change Timer Interval on-the-fly
1040
+
The following is the sample terminal output when running example [Change_Interval_HF](examples/Change_Interval_HF) on **AVR Mega2560** to demonstrate how to change High Frequency Timer Interval on-the-fly
1041
1041
1042
1042
```
1043
1043
1044
1044
Starting Change_Interval_HF on Arduino AVR Mega2560/ADK
1045
-
TimerInterrupt v1.6.0
1045
+
TimerInterrupt v1.7.0
1046
1046
CPU Frequency = 16 MHz
1047
1047
[TISR] T1
1048
1048
[TISR] Freq * 1000 = 5000000.00
@@ -1137,6 +1137,7 @@ Submit issues to: [TimerInterrupt issues](https://github.com/khoih-prog/TimerInt
1137
1137
12. Add support to **Generic or Sparkfun AVR ATmega128RFA1** such as **ATMEGA128RFA1_DEV_BOARD, etc.**
1138
1138
13. Add Timer3 and Timer4 support to **ATmega32U4 and ATmega16U4**.
1139
1139
14. Fix bug resulting half frequency when using high frequencies.
1140
+
15. Fix bug resulting wrong frequency for some low frequencies.
Copy file name to clipboardExpand all lines: changelog.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@
11
11
## Table of Contents
12
12
13
13
*[Changelog](#changelog)
14
+
*[Releases v1.7.0](#releases-v170)
14
15
*[Releases v1.6.0](#releases-v160)
15
16
*[Releases v1.5.0](#releases-v150)
16
17
*[Releases v1.4.1](#releases-v141)
@@ -27,6 +28,10 @@
27
28
28
29
## Changelog
29
30
31
+
### Releases v1.7.0
32
+
33
+
1. Fix bug resulting wrong frequency for some low frequencies.
34
+
30
35
### Releases v1.6.0
31
36
32
37
1. Fix bug resulting half frequency when using high frequencies. Check [Frequencies are half of what I expect #22](https://github.com/khoih-prog/TimerInterrupt/discussions/22)
"description": "This library enables you to use Interrupt from Hardware Timers on an Arduino, Adafruit or Sparkfun AVR board, such as Nano, UNO, Mega, Leonardo, YUN, Teensy, Feather_32u4, Feather_328P, Pro Micro, etc. 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.",
sentence=This library enables you to use Interrupt from Hardware Timers on an Arduino, Adafruit or Sparkfun AVR board, such as Nano, UNO, Mega, Leonardo, YUN, Teensy, Feather_32u4, Feather_328P, Pro Micro, etc.
0 commit comments