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.
*[1. ISR_Timers_Array_Simple on RASPBERRY_PI_PICO](#1-isr_timers_array_simple-on-raspberry_pi_pico)
54
56
*[2. TimerInterruptTest on RASPBERRY_PI_PICO](#2-timerinterrupttest-on-raspberry_pi_pico)
55
57
*[3. Change_Interval on RASPBERRY_PI_PICO](#3-change_interval-on-raspberry_pi_pico)
56
58
*[4. SwitchDebounce on RASPBERRY_PI_PICO](#4-switchdebounce-on-raspberry_pi_pico)
59
+
*[5. ISR_Timers_Array_Simple on ADAFRUIT_FEATHER_RP2040](#5-isr_timers_array_simple-on-adafruit_feather_rp2040)
60
+
*[6. ISR_Timers_Array_Complex on ADAFRUIT_ITSYBITSY_RP2040](#6-isr_timers_array_complex-on-adafruit_itsybitsy_rp2040)
57
61
*[Debug](#debug)
58
62
*[Troubleshooting](#troubleshooting)
59
63
*[Releases](#releases)
@@ -127,6 +131,12 @@ The catch is **your function is now part of an ISR (Interrupt Service Routine),
127
131
128
132
## Changelog
129
133
134
+
### Releases v1.1.0
135
+
136
+
1. Add support to new boards (**ADAFRUIT_ITSYBITSY_RP2040, ADAFRUIT_QTPY_RP2040, ADAFRUIT_STEMMAFRIEND_RP2040, ADAFRUIT_TRINKEYQT_RP2040, ADAFRUIT_MACROPAD_RP2040, SPARKFUN_PROMICRO_RP2040, etc.**) using the arduino-pico core
137
+
2. Add `ISR_16_Timers_Array_Complex` examples.
138
+
3. Fix examples' bug
139
+
130
140
### Releases v1.0.1
131
141
132
142
1. Update README and Packages' Patches to match core arduino-pico core v1.4.0
@@ -141,8 +151,8 @@ The catch is **your function is now part of an ISR (Interrupt Service Routine),
141
151
142
152
## Prerequisites
143
153
144
-
1.[`Arduino IDE 1.8.13+` for Arduino](https://www.arduino.cc/en/Main/Software)
145
-
2.[`Earle Philhower's arduino-pico core v1.4.0+`](https://github.com/earlephilhower/arduino-pico) for RP2040-based boards such as **RASPBERRY_PI_PICO, ADAFRUIT_FEATHER_RP2040 and GENERIC_RP2040**, etc. [](https://github.com/earlephilhower/arduino-pico/releases/latest)
154
+
1.[`Arduino IDE 1.8.15+` for Arduino](https://www.arduino.cc/en/Main/Software)
155
+
2.[`Earle Philhower's arduino-pico core v1.8.1+`](https://github.com/earlephilhower/arduino-pico) for RP2040-based boards such as **RASPBERRY_PI_PICO, ADAFRUIT_FEATHER_RP2040 and GENERIC_RP2040**, etc. [](https://github.com/earlephilhower/arduino-pico/releases/latest)
@@ -771,6 +778,183 @@ SW Released, from millis() = 80238
771
778
SW Pressed total time ms = 1181
772
779
```
773
780
781
+
---
782
+
783
+
### 5. ISR_Timers_Array_Simple on ADAFRUIT_FEATHER_RP2040
784
+
785
+
The following is the sample terminal output when running example [ISR_Timers_Array_Simple](examples/ISR_Timers_Array_Simple) on ADAFRUIT_FEATHER_RP2040
786
+
787
+
```
788
+
789
+
Starting ISR_Timers_Array_Simple on ADAFRUIT_FEATHER_RP2040
SimpleTimer : programmed 2000ms, current time ms : 11707, Delta ms : 11707
797
+
Timer2s actual : 2000
798
+
Timer5s actual : 5000
799
+
SimpleTimer : programmed 2000ms, current time ms : 21707, Delta ms : 10000
800
+
Timer2s actual : 2000
801
+
Timer5s actual : 5000
802
+
SimpleTimer : programmed 2000ms, current time ms : 31708, Delta ms : 10001
803
+
Timer2s actual : 2000
804
+
Timer5s actual : 5000
805
+
```
806
+
807
+
### 6. ISR_16_Timers_Array_Complex on ADAFRUIT_ITSYBITSY_RP2040
808
+
809
+
The following is the sample terminal output when running example [ISR_16_Timers_Array_Complex](examples/ISR_16_Timers_Array_Complex) on ADAFRUIT_ITSYBITSY_RP2040
810
+
811
+
```
812
+
813
+
Starting ISR_16_Timers_Array_Complex on ADAFRUIT_ITSYBITSY_RP2040
@@ -802,6 +986,12 @@ Sometimes, the library will only work if you update the board core to the latest
802
986
803
987
## Releases
804
988
989
+
### Releases v1.1.0
990
+
991
+
1. Add support to new boards (**ADAFRUIT_ITSYBITSY_RP2040, ADAFRUIT_QTPY_RP2040, ADAFRUIT_STEMMAFRIEND_RP2040, ADAFRUIT_TRINKEYQT_RP2040, ADAFRUIT_MACROPAD_RP2040, SPARKFUN_PROMICRO_RP2040, etc.**) using the arduino-pico core
992
+
2. Add `ISR_16_Timers_Array_Complex` examples.
993
+
3. Fix examples' bug
994
+
805
995
### Releases v1.0.1
806
996
807
997
1. Update README and Packages' Patches to match core arduino-pico core v1.4.0
@@ -833,6 +1023,7 @@ Submit issues to: [RPI_PICO_TimerInterrupt issues](https://github.com/khoih-prog
833
1023
3. Longer time interval
834
1024
4. Add Version String
835
1025
5. Add Table of Contents
1026
+
6. Add support to new boards (**ADAFRUIT_ITSYBITSY_RP2040, ADAFRUIT_QTPY_RP2040, ADAFRUIT_STEMMAFRIEND_RP2040, ADAFRUIT_TRINKEYQT_RP2040, ADAFRUIT_MACROPAD_RP2040, SPARKFUN_PROMICRO_RP2040, etc.**) using the arduino-pico core
0 commit comments