I've created a 192KB SPIFFS partition on an ESP32-PICO-KIT. After formatting,
Code: Select all
esp_spiffs_info()
At this point attempting to create more files fails,
Code: Select all
open(path, O_APPEND|O_CREAT|O_WRONLY)
Code: Select all
ENOENT
I don't understand why this is happening. There is approximately 19KB free so it should be able to create a new file.
Are the SPIFFS filesystem limits published somewhere? Is there a limit to the number of files the SPIFFS filesystem can contain?
Does anyone have other ideas as to what might be the cause?
Thank you,
Brian