Hello!
I need littlefs for saving frequent data to esp embedded flash.
I have successfully added littlefs2 crate and esp-littlefs component to project. Build is OK.
But I cannot make it work. How to define storage to write to flash instead of ram?
let mut storage =???
I cannot mount fs to write first file...
Filesystem::mount(&mut alloc, &mut storage)
I cannot find minimal working example on internet
It there pure RUST solution or I need to use C binding from esp-littlefs? Which is working...
Thanks in advance!