Laurent Madjarian
Laurent Madjarian

Reputation: 1

Nanoframework ESP32 SPIFFS or LITTLEFS support with nanoff?

is there a solution to format esp32 esp 32 flash memory with SPIFFS or LITTLEFS and upload files in this partition with nanoff . I try to use the sample webserver to read local file in flash storage, but i cant find a way to upload my files in esp32

Thx

I tried to format the ESP32 partition with platformio and read back with nanoframework webserver project, but no luck.

Upvotes: 0

Views: 470

Answers (1)

José Simões
José Simões

Reputation: 701

When flashing an ESP32 with .NET nanoFramework firmware there is already a partition for NVS that's using SPIFFs.

Currently the only way to read/write from that partition is using the System.IO.File API or Windows.Storage (not recomended for new code).

There have been more requests for this (or similar) feature. We're considering it and how to best implement it.

Upvotes: 0

Related Questions