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

Commit 0e9c838

Browse files
authored
v1.0.1 to fix platform
### Releases v1.0.1 1. Fix platform in `library.json`
1 parent dd6ad0c commit 0e9c838

25 files changed

+85
-104
lines changed

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p
1414

1515
Please ensure to specify the following:
1616

17-
* Arduino IDE version (e.g. 1.8.15) or Platform.io version
18-
* `RP2040` Core Version (e.g. Arduino-mbed RP2040 v2.1.0 or arduino-pico core v1.8.4)
19-
* `RP2040` Board type (e.g. NANO_RP2040_CONNECT, RASPBERRY_PI_PICO, ADAFRUIT_FEATHER_RP2040, GENERIC_RP2040, etc.)
17+
* Arduino IDE version (e.g. 1.8.16) or Platform.io version
18+
* `Arduino mbed_rp2040` Core Version (e.g. Arduino mbed_rp2040 core v2.5.2) or `RP2040` Core Version (e.g. RP2040 core v1.9.5)
19+
* `RP2040` Board type (e.g. Nano_RP2040_Connect, 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
2222
* Anything that might be relevant in your opinion, such as:
@@ -27,11 +27,11 @@ Please ensure to specify the following:
2727
### Example
2828

2929
```
30-
Arduino IDE version: 1.8.15
31-
Arduino-mbed RP2040 v2.1.0
32-
NANO_RP2040_CONNECT Module
30+
Arduino IDE version: 1.8.16
31+
Arduino mbed_rp2040 core v2.5.2
32+
RASPBERRY_PI_PICO board
3333
OS: Ubuntu 20.04 LTS
34-
Linux xy-Inspiron-3593 5.4.0-74-generic #83-Ubuntu SMP Sat May 8 02:35:39 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
34+
Linux xy-Inspiron-3593 5.4.0-86-generic #97-Ubuntu SMP Fri Sep 17 19:19:40 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: 14 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
* [Why do we need this RP2040_SD library](#why-do-we-need-this-rp2040_sd-library)
1515
* [Features](#features)
1616
* [Currently supported Boards](#currently-supported-boards)
17-
* [Changelog](#changelog)
18-
* [Releases v1.0.0](#releases-v100)
17+
* [Changelog](changelog.md)
1918
* [Prerequisites](#prerequisites)
2019
* [Installation](#installation)
2120
* [Use Arduino Library Manager](#use-arduino-library-manager)
@@ -44,7 +43,6 @@
4443
* [10. Files on RASPBERRY_PI_PICO](#10-files-on-raspberry_pi_pico)
4544
* [Debug](#debug)
4645
* [Troubleshooting](#troubleshooting)
47-
* [Releases](#releases)
4846
* [Issues](#issues)
4947
* [TO DO](#to-do)
5048
* [DONE](#done)
@@ -91,26 +89,15 @@ But if you need to write codes to be used in both [**Arduino-mbed RP2040** core]
9189

9290
1. RP2040-based boards such as **NANO_RP2040_CONNECT, RASPBERRY_PI_PICO, ADAFRUIT_FEATHER_RP2040 and GENERIC_RP2040**, etc. using either [**Arduino-mbed RP2040** core](https://github.com/arduino/ArduinoCore-mbed) or [**Earle Philhower's arduino-pico core**](https://github.com/earlephilhower/arduino-pico).
9391

94-
---
95-
---
96-
97-
98-
## Changelog
99-
100-
### Releases v1.0.0
101-
102-
1. Port to RP2040-based boards using Arduino-mbed or arduino-pico core
103-
2. Add debugging feature
104-
10592

10693
---
10794
---
10895

10996
## Prerequisites
11097

111-
1. [`Arduino IDE 1.8.15+` for Arduino](https://www.arduino.cc/en/Main/Software)
112-
2. [`Arduino mbed_rp2040 core 2.4.1+`](https://github.com/arduino/ArduinoCore-mbed) for Arduino RP2040-based boards, such as **Arduino Nano RP2040 Connect, RASPBERRY_PI_PICO, etc.**. [![GitHub release](https://img.shields.io/github/release/arduino/ArduinoCore-mbed.svg)](https://github.com/arduino/ArduinoCore-mbed/releases/latest)
113-
3. [`Earle Philhower's arduino-pico core v1.9.4+`](https://github.com/earlephilhower/arduino-pico) for RP2040-based boards such as **RASPBERRY_PI_PICO, ADAFRUIT_FEATHER_RP2040 and GENERIC_RP2040**, etc. [![GitHub release](https://img.shields.io/github/release/earlephilhower/arduino-pico.svg)](https://github.com/earlephilhower/arduino-pico/releases/latest)
98+
1. [`Arduino IDE 1.8.16+` for Arduino](https://www.arduino.cc/en/Main/Software)
99+
2. [`Arduino mbed_rp2040 core 2.5.2+`](https://github.com/arduino/ArduinoCore-mbed) for Arduino (Use Arduino Board Manager) RP2040-based boards, such as **Arduino Nano RP2040 Connect, RASPBERRY_PI_PICO, etc.**. [![GitHub release](https://img.shields.io/github/release/arduino/ArduinoCore-mbed.svg)](https://github.com/arduino/ArduinoCore-mbed/releases/latest)
100+
3. [`Earle Philhower's arduino-pico core v1.9.5+`](https://github.com/earlephilhower/arduino-pico) for RP2040-based boards such as **RASPBERRY_PI_PICO, ADAFRUIT_FEATHER_RP2040 and GENERIC_RP2040**, etc. [![GitHub release](https://img.shields.io/github/release/earlephilhower/arduino-pico.svg)](https://github.com/earlephilhower/arduino-pico/releases/latest)
114101

115102
---
116103
---
@@ -305,7 +292,7 @@ The following is the sample terminal output when running example [CardInfo](exam
305292

306293
```
307294
Starting SD Card CardInfo on MBED RaspberryPi Pico
308-
MBED RP2040_SD v1.0.0
295+
MBED RP2040_SD v1.0.1
309296
Initializing SD card with SS = 5
310297
SCK = 2
311298
MOSI = 3
@@ -344,7 +331,7 @@ The following is the sample terminal output when running example [DumpFile](exam
344331

345332
```
346333
Starting SD Card DumpFile on MBED RaspberryPi Pico
347-
MBED RP2040_SD v1.0.0
334+
MBED RP2040_SD v1.0.1
348335
Initializing SD card with SS = 5
349336
SCK = 2
350337
MOSI = 3
@@ -364,7 +351,7 @@ The following is the sample terminal output when running example [ListFiles](exa
364351

365352
```
366353
Starting SD Card ListFiles on MBED RaspberryPi Pico
367-
MBED RP2040_SD v1.0.0
354+
MBED RP2040_SD v1.0.1
368355
Initializing SD card with SS = 5
369356
SCK = 2
370357
MOSI = 3
@@ -404,7 +391,7 @@ The following is the sample terminal output when running example [ReadWrite](exa
404391

405392
```
406393
Starting SD Card ReadWrite on MBED RaspberryPi Pico
407-
MBED RP2040_SD v1.0.0
394+
MBED RP2040_SD v1.0.1
408395
Initializing SD card with SS = 5
409396
SCK = 2
410397
MOSI = 3
@@ -437,7 +424,7 @@ The following is the sample terminal output when running example [Files](example
437424

438425
```
439426
Starting SD Card Files on MBED RaspberryPi Pico
440-
MBED RP2040_SD v1.0.0
427+
MBED RP2040_SD v1.0.1
441428
Initializing SD card with SS = 5
442429
SCK = 2
443430
MOSI = 3
@@ -463,7 +450,7 @@ The following is the sample terminal output when running example [CardInfo](exam
463450

464451
```
465452
Starting SD Card CardInfo on RASPBERRY_PI_PICO
466-
RP2040_SD v1.0.0
453+
RP2040_SD v1.0.1
467454
Initializing SD card with SS = 17
468455
SCK = 18
469456
MOSI = 19
@@ -500,7 +487,7 @@ The following is the sample terminal output when running example [DumpFile](exam
500487

501488
```
502489
Starting SD Card DumpFile on RASPBERRY_PI_PICO
503-
RP2040_SD v1.0.0
490+
RP2040_SD v1.0.1
504491
Initializing SD card with SS = 17
505492
SCK = 18
506493
MOSI = 19
@@ -520,7 +507,7 @@ The following is the sample terminal output when running example [ListFiles](exa
520507

521508
```
522509
Starting SD Card ListFiles on RASPBERRY_PI_PICO
523-
RP2040_SD v1.0.0
510+
RP2040_SD v1.0.1
524511
Initializing SD card with SS = 17
525512
SCK = 18
526513
MOSI = 19
@@ -554,7 +541,7 @@ The following is the sample terminal output when running example [ReadWrite](exa
554541

555542
```
556543
Starting SD Card ReadWrite on RASPBERRY_PI_PICO
557-
RP2040_SD v1.0.0
544+
RP2040_SD v1.0.1
558545
Initializing SD card with SS = 17
559546
SCK = 18
560547
MOSI = 19
@@ -587,7 +574,7 @@ The following is the sample terminal output when running example [Files](example
587574

588575
```
589576
Starting SD Card Files on RASPBERRY_PI_PICO
590-
RP2040_SD v1.0.0
577+
RP2040_SD v1.0.1
591578
Initializing SD card with SS = 17
592579
SCK = 18
593580
MOSI = 19
@@ -629,16 +616,6 @@ If you get compilation errors, more often than not, you may need to install a ne
629616
Sometimes, the library will only work if you update the board core to the latest version because I am using newly added functions.
630617

631618

632-
---
633-
---
634-
635-
## Releases
636-
637-
### Releases v1.0.0
638-
639-
1. Port to RP2040-based boards using Arduino-mbed or arduino-pico core
640-
2. Add debugging feature
641-
642619
---
643620
---
644621

changelog.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# RP2040_SD Library
2+
3+
[![arduino-library-badge](https://www.ardu-badge.com/badge/RP2040_SD.svg?)](https://www.ardu-badge.com/RP2040_SD)
4+
[![GitHub release](https://img.shields.io/github/release/khoih-prog/RP2040_SD.svg)](https://github.com/khoih-prog/RP2040_SD/releases)
5+
[![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/khoih-prog/RP2040_SD/blob/main/LICENSE)
6+
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](#Contributing)
7+
[![GitHub issues](https://img.shields.io/github/issues/khoih-prog/RP2040_SD.svg)](http://github.com/khoih-prog/RP2040_SD/issues)
8+
9+
---
10+
---
11+
12+
## Table of Contents
13+
14+
* [Changelog](#changelog)
15+
* [Releases v1.0.1](#releases-v101)
16+
* [Releases v1.0.0](#releases-v100)
17+
18+
---
19+
---
20+
21+
22+
## Changelog
23+
24+
### Releases v1.0.1
25+
26+
1. Fix platform in `library.json`
27+
28+
### Releases v1.0.0
29+
30+
1. Port to RP2040-based boards using Arduino-mbed or arduino-pico core
31+
2. Add debugging feature
32+
33+

examples/CardInfo/CardInfo.ino

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@
2222
2323
Built by Khoi Hoang https://github.com/khoih-prog/RP2040_SD
2424
Licensed under GPL-3.0 license
25-
26-
Version: 1.0.0
27-
28-
Version Modified By Date Comments
29-
------- ----------- ---------- -----------
30-
1.0.0 K Hoang 18/06/2021 Port to RP2040-based boards using Arduimo-mbed or arduino-pico core
3125
*****************************************************************************************************************************/
3226
/*
3327
SD card connection

examples/DataLogger/DataLogger.ino

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@
2222
2323
Built by Khoi Hoang https://github.com/khoih-prog/RP2040_SD
2424
Licensed under GPL-3.0 license
25-
26-
Version: 1.0.0
27-
28-
Version Modified By Date Comments
29-
------- ----------- ---------- -----------
30-
1.0.0 K Hoang 18/06/2021 Port to RP2040-based boards using Arduimo-mbed or arduino-pico core
3125
*****************************************************************************************************************************/
3226
/*
3327
SD card connection

examples/DumpFile/DumpFile.ino

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@
2222
2323
Built by Khoi Hoang https://github.com/khoih-prog/RP2040_SD
2424
Licensed under GPL-3.0 license
25-
26-
Version: 1.0.0
27-
28-
Version Modified By Date Comments
29-
------- ----------- ---------- -----------
30-
1.0.0 K Hoang 18/06/2021 Port to RP2040-based boards using Arduimo-mbed or arduino-pico core
3125
*****************************************************************************************************************************/
3226
/*
3327
SD card connection

examples/Files/Files.ino

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@
2222
2323
Built by Khoi Hoang https://github.com/khoih-prog/RP2040_SD
2424
Licensed under GPL-3.0 license
25-
26-
Version: 1.0.0
27-
28-
Version Modified By Date Comments
29-
------- ----------- ---------- -----------
30-
1.0.0 K Hoang 18/06/2021 Port to RP2040-based boards using Arduimo-mbed or arduino-pico core
3125
*****************************************************************************************************************************/
3226
/*
3327
SD card connection

examples/ListFiles/ListFiles.ino

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@
2222
2323
Built by Khoi Hoang https://github.com/khoih-prog/RP2040_SD
2424
Licensed under GPL-3.0 license
25-
26-
Version: 1.0.0
27-
28-
Version Modified By Date Comments
29-
------- ----------- ---------- -----------
30-
1.0.0 K Hoang 18/06/2021 Port to RP2040-based boards using Arduimo-mbed or arduino-pico core
3125
*****************************************************************************************************************************/
3226

3327
/*

examples/NonBlockingWrite/NonBlockingWrite.ino

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@
2222
2323
Built by Khoi Hoang https://github.com/khoih-prog/RP2040_SD
2424
Licensed under GPL-3.0 license
25-
26-
Version: 1.0.0
27-
28-
Version Modified By Date Comments
29-
------- ----------- ---------- -----------
30-
1.0.0 K Hoang 18/06/2021 Port to RP2040-based boards using Arduimo-mbed or arduino-pico core
3125
*****************************************************************************************************************************/
3226
/*
3327
SD card connection

examples/ReadWrite/ReadWrite.ino

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@
2222
2323
Built by Khoi Hoang https://github.com/khoih-prog/RP2040_SD
2424
Licensed under GPL-3.0 license
25-
26-
Version: 1.0.0
27-
28-
Version Modified By Date Comments
29-
------- ----------- ---------- -----------
30-
1.0.0 K Hoang 18/06/2021 Port to RP2040-based boards using Arduimo-mbed or arduino-pico core
3125
*****************************************************************************************************************************/
3226
/*
3327
SD card connection

0 commit comments

Comments
 (0)