Add little fs to my esp32s3 project

Hello ,
I am trying to add esp-littlefs to my project but I get bellow error:

error[E0432]: unresolved import esp_idf_sys::esp_littlefs_mounted
--> platforms/esp/E200/src/main.rs:11:5
|
11 | use esp_idf_sys::esp_littlefs_mounted;
| ^^^^^^^^^^^^^--------------------
| | |
| | help: a similar name exists in the module: esp_spiffs_mounted
| no esp_littlefs_mounted in the root

This crate uses bindgen, so it reads these names from C headers on your system. You probably have an incompatible/outdated version of esp-idf package on your system.

I don't know. I am trying to add this library to idf components according to this link.

Perhaps authors of the esp_idf_sys can help you:

thanks, I have solved it using customizing the esp-idf-sys. thanks for your response.

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.