spiffs
spiffs copied to clipboard
Wear-leveled SPI flash file system for embedded devices
Hello, I am running SPIFFS on an ARM M4F processor connected to an 8MB MX25R6435F SPI flash. SPIFFS is allocated 6MB of the external flash, and has been configured for...
Line 2001 in spiffs_nucleus.c, I think this happens when next objix page address is < than current objix page. See this example debug output, I read every chunk in a...
Hi, this pull request should solve issue https://github.com/pellepl/spiffs/issues/107 and https://github.com/pellepl/spiffs/issues/217 I used SPIFFS_remove function as a template. Complete test not already done, but I think it shuold be ok. thanks
Hi all, I referring the spiffsexternal example to save multiple text files in the TI Launchpad LAUNCHXL-CC1352R1. How should make boundaries within the files in spiffs file system. in the...
Hello spiffs team, I am a beginner to the file system. I am working on Giga device(GD25Q20B) NOR Flash(2M-bit)(256KB). The flash has - Block size: 64kB - Sector size :...
is there any CRC to the file system API, so I can validate the the integrity of the files?
I have a board with a 16MB flash on it. When I configured SPIFFS way back when I declared `spiffs_obj_id` as a `uint16_t`. The system has been working well enough...
Some specific combinations of writes & seeks put DEL characters (0xff) into files, usually in place of CRLF (0x0d+0x0a). Using LittleFS instead of SPIFFS eliminates the problem. Here is an...
Hi, I'm trying to implement SPIFFS but can't pass beyond mounting. my test code does the following: mount > unmount > format > re-mount Then I try to SPIFFS_open(&fs, "file1",...