-
I see the bindings in esp_idf_svc::nvs for std crates. However, I guess that for no_std, we'd have to reimplement the calls for handling NVS. Is there any progress around that or any crate that already implements this? I did not find anything in the book or in this repo. Only that when initializing the wifi you are passing a struct of 64 bytes to chip_specific::g_misc_nvs. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
For |
Beta Was this translation helpful? Give feedback.
For
no_std
you can use https://github.com/esp-rs/esp-storage to read and write flash - so it's more low level but you can build e.g. a key-value store on top of this