tinyfs icon indicating copy to clipboard operation
tinyfs copied to clipboard

Embedded filesystems for TinyGo. Currently supports FATfs and LittleFS on microcontrollers with either SDCard or Flash RAM.

Results 5 tinyfs issues
Sort by recently updated
recently updated
newest added

I need to add the `io.Seeker` interface to `tinyfs.File` so I can read some data directly from littlefs storage instead of copying into memory first for some code that has...

enhancement
next-release

Go 1.16 adds a new package `io/fs` with interfaces that function as an abstraction layer for filesystems. The analogous interfaces in TinyGo/tinyfs are very close to the ones in the...

enhancement
next-release

The FatFS is not working correctly, apparently ever since https://github.com/tinygo-org/tinygo/issues/3460 ``` $ tinygo flash -target nano-rp2040 -stack-size 8kb -monitor ./examples/console/fatfs/machine/ Connected to /dev/ttyACM0. Press Ctrl-C to exit. SPI Configured. Reading...

Unable to build simple-fatfs example [here]([simple-fatfs](https://github.com/tinygo-org/tinyfs/tree/release/examples/simple-fatfs)). ```panic: runtime error: type assert failed``` What is the minimal example to simply: 1)write "hello world" to a Pico's flash using TinyGo 2)read the...

I'm testing the tinyfs on an [Adafruit Gran Central M4 board](https://www.adafruit.com/product/4064), but the changes are not stored on the SPI Flash device. I'm using the QSPI example Device is detected...