sdcard: remove tinyfs example and replace with link to tinyfs repo in docs

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram
2023-05-19 15:35:32 +02:00
committed by Ron Evans
parent de2742f10c
commit 331a60ce2d
15 changed files with 15 additions and 725 deletions
+9 -3
View File
@@ -1,8 +1,14 @@
# SPI sdcard/mmc driver
This package provides the driver for sdcard/mmc with SPI connection.
`examples/sdcard/console` shows a low-level access example.
`examples/sdcard/tinyfs` shows an example of using fatfs to read FAT32.
This package provides the driver for sdcard/mmc with SPI connection.
To use a file system on the SDcard, please see the TinyFS repo:
https://github.com/tinygo-org/tinyfs
See `examples/sdcard/console` for a low-level access example.
## Stack size
If you use this package, you need to set `default-stack-size` in `targets/*.json`.
For example, `targets/wioterminal.json` has the following configuration.
+6
View File
@@ -1,3 +1,9 @@
// package sdcard provides a TinyGo driver for sdcard/mmc devices
// using a SPI connection.
//
// To use a file system on the SDcard, please see the TinyFS repo:
//
// https://github.com/tinygo-org/tinyfs
package sdcard
import (