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

Commit 92da992

Browse files
authored
v1.0.1 to match arduino-pico core v1.4.0
### Releases v1.0.1 1. Update README and Packages' Patches to match arduino-pico core v1.4.0
1 parent ee1c730 commit 92da992

24 files changed

+64
-35
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p
1515
Please ensure to specify the following:
1616

1717
* Arduino IDE version (e.g. 1.8.13) or Platform.io version
18-
* `RP2040` Core Version (e.g. RP2040 core v1.2.1)
18+
* `RP2040` Core Version (e.g. RP2040 core v1.4.0)
1919
* `RP2040` Board type (e.g. RASPBERRY_PI_PICO, ADAFRUIT_FEATHER_RP2040, GENERIC_RP2040, etc.)
2020
* Contextual information (e.g. what you were trying to achieve)
2121
* Simplest possible steps to reproduce
@@ -28,10 +28,10 @@ Please ensure to specify the following:
2828

2929
```
3030
Arduino IDE version: 1.8.13
31-
RP2040 core v1.2.1
31+
RP2040 core v1.4.0
3232
RASPBERRY_PI_PICO Module
3333
OS: Ubuntu 20.04 LTS
34-
Linux xy-Inspiron-3593 5.4.0-72-generic #80-Ubuntu SMP Mon Apr 12 17:35:00 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
34+
Linux xy-Inspiron-3593 5.4.0-73-generic #82-Ubuntu SMP Wed Apr 14 17:39:42 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
3535
3636
Context:
3737
I encountered a crash while using TimerInterrupt.

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
* [Currently supported Boards](#currently-supported-boards)
1818
* [Important Notes about ISR](#important-notes-about-isr)
1919
* [Changelog](#changelog)
20+
* [Releases v1.0.1](#releases-v101)
2021
* [Initial Releases v1.0.0](#initial-releases-v100)
2122
* [Prerequisites](#prerequisites)
2223
* [Installation](#installation)
@@ -126,6 +127,10 @@ The catch is **your function is now part of an ISR (Interrupt Service Routine),
126127

127128
## Changelog
128129

130+
### Releases v1.0.1
131+
132+
1. Update README and Packages' Patches to match core arduino-pico core v1.4.0
133+
129134
### Initial Releases v1.0.0
130135

131136
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
595600

596601
```
597602
Starting ISR_Timers_Array_Simple on RASPBERRY_PI_PICO
598-
RPi_Pico_TimerInterrupt v1.0.0
603+
RPi_Pico_TimerInterrupt v1.0.1
599604
CPU Frequency = 125 MHz
600605
[TISR] RPI_PICO_TimerInterrupt: _timerNo = 1 , _fre = 1000000.00
601606
[TISR] _count = 0 - 1000
@@ -624,7 +629,7 @@ The following is the sample terminal output when running example [TimerInterrupt
624629

625630
```
626631
Starting TimerInterruptTest on RASPBERRY_PI_PICO
627-
RPi_Pico_TimerInterrupt v1.0.0
632+
RPi_Pico_TimerInterrupt v1.0.1
628633
CPU Frequency = 125 MHz
629634
[TISR] RPI_PICO_TimerInterrupt: _timerNo = 0 , _fre = 1000000.00
630635
[TISR] _count = 0 - 1000000
@@ -668,7 +673,7 @@ The following is the sample terminal output when running example [Change_Interva
668673

669674
```
670675
Starting Change_Interval on RASPBERRY_PI_PICO
671-
RPi_Pico_TimerInterrupt v1.0.0
676+
RPi_Pico_TimerInterrupt v1.0.1
672677
CPU Frequency = 125 MHz
673678
[TISR] RPI_PICO_TimerInterrupt: _timerNo = 0 , _fre = 1000000.00
674679
[TISR] _count = 0 - 2000000
@@ -749,7 +754,7 @@ The following is the sample terminal output when running example [SwitchDebounce
749754

750755
```
751756
Starting SwitchDebounce on RASPBERRY_PI_PICO
752-
RPi_Pico_TimerInterrupt v1.0.0
757+
RPi_Pico_TimerInterrupt v1.0.1
753758
CPU Frequency = 125 MHz
754759
[TISR] RPI_PICO_TimerInterrupt: _timerNo = 0 , _fre = 1000000.00
755760
[TISR] _count = 0 - 20000
@@ -797,6 +802,10 @@ Sometimes, the library will only work if you update the board core to the latest
797802

798803
## Releases
799804

805+
### Releases v1.0.1
806+
807+
1. Update README and Packages' Patches to match core arduino-pico core v1.4.0
808+
800809
### Initial Releases v1.0.0
801810

802811
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)

examples/Argument_Complex/Argument_Complex.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@
2626
Based on BlynkTimer.h
2727
Author: Volodymyr Shymanskyy
2828
29-
Version: 1.0.0
29+
Version: 1.0.1
3030
3131
Version Modified By Date Comments
3232
------- ----------- ---------- -----------
3333
1.0.0 K Hoang 11/05/2021 Initial coding to support RP2040-based boards such as RASPBERRY_PI_PICO. etc.
34+
1.0.1 K Hoang 18/05/2021 Update README and Packages' Patches to match core arduino-pico core v1.4.0
3435
*****************************************************************************************************************************/
3536

3637
#if !( defined(ARDUINO_RASPBERRY_PI_PICO) || defined(ARDUINO_ADAFRUIT_FEATHER_RP2040) || defined(ARDUINO_GENERIC_RP2040) )

examples/Argument_None/Argument_None.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@
2626
Based on BlynkTimer.h
2727
Author: Volodymyr Shymanskyy
2828
29-
Version: 1.0.0
29+
Version: 1.0.1
3030
3131
Version Modified By Date Comments
3232
------- ----------- ---------- -----------
3333
1.0.0 K Hoang 11/05/2021 Initial coding to support RP2040-based boards such as RASPBERRY_PI_PICO. etc.
34+
1.0.1 K Hoang 18/05/2021 Update README and Packages' Patches to match core arduino-pico core v1.4.0
3435
*****************************************************************************************************************************/
3536

3637
/*

examples/Argument_Simple/Argument_Simple.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@
2626
Based on BlynkTimer.h
2727
Author: Volodymyr Shymanskyy
2828
29-
Version: 1.0.0
29+
Version: 1.0.1
3030
3131
Version Modified By Date Comments
3232
------- ----------- ---------- -----------
3333
1.0.0 K Hoang 11/05/2021 Initial coding to support RP2040-based boards such as RASPBERRY_PI_PICO. etc.
34+
1.0.1 K Hoang 18/05/2021 Update README and Packages' Patches to match core arduino-pico core v1.4.0
3435
*****************************************************************************************************************************/
3536

3637
#if !( defined(ARDUINO_RASPBERRY_PI_PICO) || defined(ARDUINO_ADAFRUIT_FEATHER_RP2040) || defined(ARDUINO_GENERIC_RP2040) )

examples/Change_Interval/Change_Interval.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@
2626
Based on BlynkTimer.h
2727
Author: Volodymyr Shymanskyy
2828
29-
Version: 1.0.0
29+
Version: 1.0.1
3030
3131
Version Modified By Date Comments
3232
------- ----------- ---------- -----------
3333
1.0.0 K Hoang 11/05/2021 Initial coding to support RP2040-based boards such as RASPBERRY_PI_PICO. etc.
34+
1.0.1 K Hoang 18/05/2021 Update README and Packages' Patches to match core arduino-pico core v1.4.0
3435
*****************************************************************************************************************************/
3536

3637
/*

examples/ISR_Timers_Array_Simple/ISR_Timers_Array_Simple.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@
2626
Based on BlynkTimer.h
2727
Author: Volodymyr Shymanskyy
2828
29-
Version: 1.0.0
29+
Version: 1.0.1
3030
3131
Version Modified By Date Comments
3232
------- ----------- ---------- -----------
3333
1.0.0 K Hoang 11/05/2021 Initial coding to support RP2040-based boards such as RASPBERRY_PI_PICO. etc.
34+
1.0.1 K Hoang 18/05/2021 Update README and Packages' Patches to match core arduino-pico core v1.4.0
3435
*****************************************************************************************************************************/
3536

3637
#if !( defined(ARDUINO_RASPBERRY_PI_PICO) || defined(ARDUINO_ADAFRUIT_FEATHER_RP2040) || defined(ARDUINO_GENERIC_RP2040) )

examples/RPM_Measure/RPM_Measure.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@
2626
Based on BlynkTimer.h
2727
Author: Volodymyr Shymanskyy
2828
29-
Version: 1.0.0
29+
Version: 1.0.1
3030
3131
Version Modified By Date Comments
3232
------- ----------- ---------- -----------
3333
1.0.0 K Hoang 11/05/2021 Initial coding to support RP2040-based boards such as RASPBERRY_PI_PICO. etc.
34+
1.0.1 K Hoang 18/05/2021 Update README and Packages' Patches to match core arduino-pico core v1.4.0.
3435
*****************************************************************************************************************************/
3536
/*
3637
Notes:

examples/SwitchDebounce/SwitchDebounce.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@
2626
Based on BlynkTimer.h
2727
Author: Volodymyr Shymanskyy
2828
29-
Version: 1.0.0
29+
Version: 1.0.1
3030
3131
Version Modified By Date Comments
3232
------- ----------- ---------- -----------
3333
1.0.0 K Hoang 11/05/2021 Initial coding to support RP2040-based boards such as RASPBERRY_PI_PICO. etc.
34+
1.0.1 K Hoang 18/05/2021 Update README and Packages' Patches to match core arduino-pico core v1.4.0
3435
*****************************************************************************************************************************/
3536
/*
3637
Notes:

examples/TimerInterruptTest/TimerInterruptTest.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@
2626
Based on BlynkTimer.h
2727
Author: Volodymyr Shymanskyy
2828
29-
Version: 1.0.0
29+
Version: 1.0.1
3030
3131
Version Modified By Date Comments
3232
------- ----------- ---------- -----------
3333
1.0.0 K Hoang 11/05/2021 Initial coding to support RP2040-based boards such as RASPBERRY_PI_PICO. etc.
34+
1.0.1 K Hoang 18/05/2021 Update README and Packages' Patches to match core arduino-pico core v1.4.0
3435
*****************************************************************************************************************************/
3536
/*
3637
Notes:

0 commit comments

Comments
 (0)