CalebDueck

Results 6 comments of CalebDueck

I'm using NAND flash memory (W25N01GVZEIR) where each block of memory consists of 64 pages and each page contains 2048 bytes. I experimented using different sizes of metadata_max and found...

Hi @geky, thanks for the details. I've talked with my team and we will put this on hold as we have found that it is running quickly enough for our...

Thank you for sharing that other thread. I may try limiting the metadata_max as currently our need for speed is greater than our need for memory. You mentioned in your...

Setting metadata_max to 1 page rather than the default of 1 block (64 pages) significantly sped up writing to littlefs. Thanks.

I've tried following the above steps but I'm getting a LFS_ERR_NOMEM error when I try to initialize the program with the heap set to zero. It is able to run...

Here's how I set up my buffers. In my code I only use lfs_file_opencfg with &file_config as the last argument. ```// variables used by the filesystem lfs_t lfs; lfs_file_t lfs_file;...