nvs_bootloader_read() is only used within ESP-IDF.
 
Symbols
loading...
Files
loading...
SummarySyntaxArgumentsReferences

Return value

The return value of the function in this file can be one of the following: - `ESP_OK`: The function successfully checked all input parameters and executed successfully. The individual `result_code` in `read_list` indicates the result of the lookup for a particular requested key. - `ESP_ERR_INVALID_ARG`: The validity of all `read_list` input parameters was checked and failed for at least one of the parameters. The individual `result_code` in `read_list` provides the detailed reason. This error code is also returned when read_list is null or read_list_count is 0. - `ESP_ERR_NVS_INVALID_NAME`: The partition name specified is too long or is null. - `ESP_ERR_NVS_PART_NOT_FOUND`: The partition was not found in the partition table. - `ESP_ERR_NVS_CORRUPT_KEY_PART`: Encryption-related problems. - `ESP_ERR_NVS_WRONG_ENCRYPTION`: Encryption-related problems. - `ESP_ERR_INVALID_STATE`: NVS partition or pages related errors - wrong size of partition, header inconsistent / entries inconsistencies, multiple active pages, page in state INVALID. - `ESP_ERR_NO_MEM`: Cannot allocate memory required to perform the function. - Technical errors in underlying storage.

References

from examples