Expand ESP32 NVS to support partition by label. #9928
brianredbeard
started this conversation in
Ideas
Replies: 1 comment
-
If you can write a PR to implement this it seems like a pretty reasonable addition. Having a way to pass an optional esp32.Partition instance to the esp32.NVS constructor seems useful. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In the Espressif documentation for the non-volatile storage library
I ran into an issue with this today when attempting to use my application specific NVS partition. The partition is clearly seen via the
esp32
module:Unfortunately though at present only the default ESP32 non-volatile storage partition may be used due to the use of
nvs_open()
as opposed tonvs_open_from_partition()
:micropython/ports/esp32/esp32_nvs.c
Line 67 in b41aaaa
It would be great if this was supported!
Beta Was this translation helpful? Give feedback.
All reactions