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

Commit

Permalink
v1.0.0 for RP2040
Browse files Browse the repository at this point in the history
### Releases v1.0.0

1. Port to RP2040-based boards using Arduino-mbed or arduino-pico core
2. Add debugging feature
  • Loading branch information
khoih-prog authored Jun 19, 2021
1 parent 4839529 commit 08c0132
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Another way to install is to:

1. Install [VS Code](https://code.visualstudio.com/)
2. Install [PlatformIO](https://platformio.org/platformio-ide)
3. Install [**RP2040_SD** library](https://platformio.org/lib/show/xxxxx/RP2040_SD) or [**RP2040_SD** library](https://platformio.org/lib/show/12433/RP2040_SD) by using [Library Manager](https://platformio.org/lib/show/xxxxx/RP2040_SD/installation). Search for **RP2040_SD** in [Platform.io Author's Libraries](https://platformio.org/lib/search?query=author:%22Khoi%20Hoang%22)
3. Install [**RP2040_SD** library](https://platformio.org/lib/show/12454/RP2040_SD) or [**RP2040_SD** library](https://platformio.org/lib/show/12454/RP2040_SD) by using [Library Manager](https://platformio.org/lib/show/12454/RP2040_SD/installation). Search for **RP2040_SD** in [Platform.io Author's Libraries](https://platformio.org/lib/search?query=author:%22Khoi%20Hoang%22)
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)


Expand Down Expand Up @@ -701,6 +701,9 @@ If you want to contribute to this project:

## Copyright

Copyright 2021- Khoi Hoang
(C) Copyright 2009 by William Greiman
(C) Copyright 2010 SparkFun Electronics
(C) Copyright 2021 by Khoi Hoang



19 changes: 13 additions & 6 deletions library.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,19 @@
"version": "1.0.0",
"keywords": "data-storage, sd, sd-card, fat, fat16, fat32, sd-fat, ex-fat, spi, mbed, rpi-pico, rp2040, nano-rp2040-connect",
"description": "This library enables you to use SPI SD cards (FAT16, FAT32, exFAT) with RP2040-based boards such as Nano_RP2040_Connect, RASPBERRY_PI_PICO using either RP2040 Arduino-mbed or arduino-pico core.. This SD-Fat v2 can support FAT16, FAT32, exFAT. exFAT supports files larger than 4GB by using uint64_t as file offset.",
"authors":
{
"name": "Khoi Hoang",
"url": "https://github.com/khoih-prog",
"maintainer": true
},
"authors": [
{
"name": "Bill Greiman",
"url": "https://github.com/greiman",
"email": "fat16lib@sbcglobal.net"
},
{
"name": "Khoi Hoang",
"url": "https://github.com/khoih-prog",
"email": "khoih.prog@gmail.com",
"maintainer": true
}
],
"repository":
{
"type": "git",
Expand Down

0 comments on commit 08c0132

Please sign in to comment.