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

Commit 5efac17

Browse files
authored
v1.1.0 to add support to new boards
### Releases v1.1.0 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 2. Add `ISR_16_Timers_Array_Complex` examples. 3. Fix examples' bug
1 parent 712c22a commit 5efac17

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* [ 2. Argument_None](examples/Argument_None)
4646
* [ 3. Argument_Simple](examples/Argument_Simple)
4747
* [ 4. Change_Interval](examples/Change_Interval).
48-
* [ 5. ISR_Timers_Array_Complex](examples/ISR_Timers_Array_Complex)
48+
* [ 5. ISR_16_Timers_Array_Complex](examples/ISR_16_Timers_Array_Complex)
4949
* [ 6. ISR_Timers_Array_Simple](examples/ISR_Timers_Array_Simple)
5050
* [ 7. RPM_Measure](examples/RPM_Measure)
5151
* [ 8. SwitchDebounce](examples/SwitchDebounce)
@@ -57,7 +57,7 @@
5757
* [3. Change_Interval on RASPBERRY_PI_PICO](#3-change_interval-on-raspberry_pi_pico)
5858
* [4. SwitchDebounce on RASPBERRY_PI_PICO](#4-switchdebounce-on-raspberry_pi_pico)
5959
* [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)
60+
* [6. ISR_16_Timers_Array_Complex on ADAFRUIT_ITSYBITSY_RP2040](#6-isr_16_timers_array_complex-on-adafruit_itsybitsy_rp2040)
6161
* [Debug](#debug)
6262
* [Troubleshooting](#troubleshooting)
6363
* [Releases](#releases)
@@ -177,7 +177,7 @@ Another way to install is to:
177177

178178
1. Install [VS Code](https://code.visualstudio.com/)
179179
2. Install [PlatformIO](https://platformio.org/platformio-ide)
180-
3. Install [**RPI_PICO_TimerInterrupt** library](https://platformio.org/lib/show/12177/RPI_PICO_TimerInterrupt) by using [Library Manager](https://platformio.org/lib/show/12177/RPI_PICO_TimerInterrupt/installation). Search for **RPI_PICO_TimerInterrupt** in [Platform.io Author's Libraries](https://platformio.org/lib/search?query=author:%22Khoi%20Hoang%22)
180+
3. Install [**RPI_PICO_TimerInterrupt** library](https://platformio.org/lib/show/12177/RPI_PICO_TimerInterrupt) or [**RPI_PICO_TimerInterrupt** library](https://platformio.org/lib/show/12273/RPI_PICO_TimerInterrupt) by using [Library Manager](https://platformio.org/lib/show/12177/RPI_PICO_TimerInterrupt/installation). Search for **RPI_PICO_TimerInterrupt** in [Platform.io Author's Libraries](https://platformio.org/lib/search?query=author:%22Khoi%20Hoang%22)
181181
4. Use included [platformio.ini](platformio/platformio.ini) file from examples to ensure that all dependent libraries will installed automatically. Please visit documentation for the other options and examples at [Project Configuration File](https://docs.platformio.org/page/projectconf.html)
182182

183183

@@ -188,6 +188,8 @@ Another way to install is to:
188188

189189
#### 1. For RP2040-based boards using [Earle Philhower arduino-pico core](https://github.com/earlephilhower/arduino-pico)
190190

191+
#### Important: Only necessary if you use core v1.4.0-
192+
191193
#### 1.1 To use BOARD_NAME
192194

193195
**To be able to automatically detect and display BOARD_NAME on RP2040-based boards (RASPBERRY_PI_PICO, ADAFRUIT_FEATHER_RP2040, GENERIC_RP2040, etc) boards**, you have to copy the file [RP2040 platform.txt](Packages_Patches/rp2040/hardware/rp2040/1.4.0) into rp2040 directory (~/.arduino15/packages/rp2040/hardware/rp2040/1.4.0).
@@ -441,7 +443,7 @@ void setup()
441443
2. [Argument_None](examples/Argument_None)
442444
3. [Argument_Simple](examples/Argument_Simple)
443445
4. [Change_Interval](examples/Change_Interval)
444-
5. [ISR_Timers_Array_Complex](examples/ISR_Timers_Array_Complex)
446+
5. [ISR_16_Timers_Array_Complex](examples/ISR_16_Timers_Array_Complex)
445447
6. [ISR_Timers_Array_Simple](examples/ISR_Timers_Array_Simple)
446448
7. [RPM_Measure](examples/RPM_Measure)
447449
8. [SwitchDebounce](examples/SwitchDebounce)

0 commit comments

Comments
 (0)