Iterator obtained from nvs_entry_find or nvs_entry_find_in_handle function. Must be non-NULL. If any error except ESP_ERR_INVALID_ARG occurs, \c iterator is set to NULL. If ESP_ERR_INVALID_ARG occurs, \c iterator is not changed.
Return value
- ESP_OK if no internal error or programming error occurred. - ESP_ERR_NVS_NOT_FOUND if no next element matching the iterator criteria. - ESP_ERR_INVALID_ARG if \c iterator is NULL. - Possibly other errors in the future for internal programming or flash errors.
Create an iterator to enumerate NVS entries based on one or more parameters
{c}
// Example of listing all the key-value pairs of any type under specified partition and namespace
nvs_iterator_t it = NULL;
esp_err_t res = nvs_entry_find(, , NVS_TYPE_ANY, &it);
while(res == ESP_OK) {
nvs_entry_info_t info;
nvs_entry_info(it, &info); // Can omit error check if parameters are guaranteed to be non-NULL
printf("key '%s', type '%d' \n", info.key, info.type);
res = nvs_entry_next(&it);
}
nvs_release_iterator(it);
Create an iterator to enumerate NVS entries based on a handle and type
{c}
// Example of listing all the key-value pairs of any type under specified handle (which defines a partition and namespace)
nvs_iterator_t it = NULL;
esp_err_t res = nvs_entry_find_in_handle(, NVS_TYPE_ANY, &it);
while(res == ESP_OK) {
nvs_entry_info_t info;
nvs_entry_info(it, &info); // Can omit error check if parameters are guaranteed to be non-NULL
printf("key '%s', type '%d' \n", info.key, info.type);
res = nvs_entry_next(&it);
}
nvs_release_iterator(it);