|
17 | 17 | * [Currently supported Boards](#currently-supported-boards) |
18 | 18 | * [Important Notes about ISR](#important-notes-about-isr) |
19 | 19 | * [Changelog](#changelog) |
| 20 | + * [Releases v1.0.1](#releases-v101) |
20 | 21 | * [Initial Releases v1.0.0](#initial-releases-v100) |
21 | 22 | * [Prerequisites](#prerequisites) |
22 | 23 | * [Installation](#installation) |
@@ -126,6 +127,10 @@ The catch is **your function is now part of an ISR (Interrupt Service Routine), |
126 | 127 |
|
127 | 128 | ## Changelog |
128 | 129 |
|
| 130 | +### Releases v1.0.1 |
| 131 | + |
| 132 | +1. Update README and Packages' Patches to match core arduino-pico core v1.4.0 |
| 133 | + |
129 | 134 | ### Initial Releases v1.0.0 |
130 | 135 |
|
131 | 136 | 1. Initial coding to support RP2040-based boards such as **RASPBERRY_PI_PICO**, etc. using [**Earle Philhower's arduino-pico** core](https://github.com/earlephilhower/arduino-pico) |
@@ -595,7 +600,7 @@ While software timer, **programmed for 2s, is activated after more than 10.000s |
595 | 600 |
|
596 | 601 | ``` |
597 | 602 | Starting ISR_Timers_Array_Simple on RASPBERRY_PI_PICO |
598 | | -RPi_Pico_TimerInterrupt v1.0.0 |
| 603 | +RPi_Pico_TimerInterrupt v1.0.1 |
599 | 604 | CPU Frequency = 125 MHz |
600 | 605 | [TISR] RPI_PICO_TimerInterrupt: _timerNo = 1 , _fre = 1000000.00 |
601 | 606 | [TISR] _count = 0 - 1000 |
@@ -624,7 +629,7 @@ The following is the sample terminal output when running example [TimerInterrupt |
624 | 629 |
|
625 | 630 | ``` |
626 | 631 | Starting TimerInterruptTest on RASPBERRY_PI_PICO |
627 | | -RPi_Pico_TimerInterrupt v1.0.0 |
| 632 | +RPi_Pico_TimerInterrupt v1.0.1 |
628 | 633 | CPU Frequency = 125 MHz |
629 | 634 | [TISR] RPI_PICO_TimerInterrupt: _timerNo = 0 , _fre = 1000000.00 |
630 | 635 | [TISR] _count = 0 - 1000000 |
@@ -668,7 +673,7 @@ The following is the sample terminal output when running example [Change_Interva |
668 | 673 |
|
669 | 674 | ``` |
670 | 675 | Starting Change_Interval on RASPBERRY_PI_PICO |
671 | | -RPi_Pico_TimerInterrupt v1.0.0 |
| 676 | +RPi_Pico_TimerInterrupt v1.0.1 |
672 | 677 | CPU Frequency = 125 MHz |
673 | 678 | [TISR] RPI_PICO_TimerInterrupt: _timerNo = 0 , _fre = 1000000.00 |
674 | 679 | [TISR] _count = 0 - 2000000 |
@@ -749,7 +754,7 @@ The following is the sample terminal output when running example [SwitchDebounce |
749 | 754 |
|
750 | 755 | ``` |
751 | 756 | Starting SwitchDebounce on RASPBERRY_PI_PICO |
752 | | -RPi_Pico_TimerInterrupt v1.0.0 |
| 757 | +RPi_Pico_TimerInterrupt v1.0.1 |
753 | 758 | CPU Frequency = 125 MHz |
754 | 759 | [TISR] RPI_PICO_TimerInterrupt: _timerNo = 0 , _fre = 1000000.00 |
755 | 760 | [TISR] _count = 0 - 20000 |
@@ -797,6 +802,10 @@ Sometimes, the library will only work if you update the board core to the latest |
797 | 802 |
|
798 | 803 | ## Releases |
799 | 804 |
|
| 805 | +### Releases v1.0.1 |
| 806 | + |
| 807 | +1. Update README and Packages' Patches to match core arduino-pico core v1.4.0 |
| 808 | + |
800 | 809 | ### Initial Releases v1.0.0 |
801 | 810 |
|
802 | 811 | 1. Initial coding to support **RP2040-based boards such as RASPBERRY_PI_PICO**, etc. using [**Earle Philhower's arduino-pico** core](https://github.com/earlephilhower/arduino-pico) |
|
0 commit comments