esp/bme680-demo/build/esp_err_codes/nvs_flash_err_codes.csv
2026-06-24 23:13:57 +02:00

3.5 KiB
Raw Permalink Blame History

1namevaluefilecomment
2ESP_ERR_NVS_BASE4352components/nvs_flash/include/nvs.hStarting number of error codes
3ESP_ERR_NVS_NOT_INITIALIZED4353components/nvs_flash/include/nvs.hThe storage driver is not initialized
4ESP_ERR_NVS_NOT_FOUND4354components/nvs_flash/include/nvs.hA requested entry couldn't be found or namespace doesnt exist yet and mode is NVS_READONLY
5ESP_ERR_NVS_TYPE_MISMATCH4355components/nvs_flash/include/nvs.hThe type of set or get operation doesn't match the type of value stored in NVS
6ESP_ERR_NVS_READ_ONLY4356components/nvs_flash/include/nvs.hStorage handle was opened as read only
7ESP_ERR_NVS_NOT_ENOUGH_SPACE4357components/nvs_flash/include/nvs.hThere is not enough space in the underlying storage to save the value
8ESP_ERR_NVS_INVALID_NAME4358components/nvs_flash/include/nvs.hNamespace name doesnt satisfy constraints
9ESP_ERR_NVS_INVALID_HANDLE4359components/nvs_flash/include/nvs.hHandle has been closed or is NULL
10ESP_ERR_NVS_REMOVE_FAILED4360components/nvs_flash/include/nvs.hThe value wasnt updated because flash write operation has failed. The value was written however, and update will be finished after re-initialization of nvs, provided that flash operation doesnt fail again.
11ESP_ERR_NVS_KEY_TOO_LONG4361components/nvs_flash/include/nvs.hKey name is too long
12ESP_ERR_NVS_PAGE_FULL4362components/nvs_flash/include/nvs.hInternal error; never returned by nvs API functions
13ESP_ERR_NVS_INVALID_STATE4363components/nvs_flash/include/nvs.hNVS is in an inconsistent state due to a previous error. Call nvs_flash_init and nvs_open again, then retry.
14ESP_ERR_NVS_INVALID_LENGTH4364components/nvs_flash/include/nvs.hString or blob length is not sufficient to store data
15ESP_ERR_NVS_NO_FREE_PAGES4365components/nvs_flash/include/nvs.hNVS partition doesn't contain any empty pages. This may happen if NVS partition was truncated. Erase the whole partition and call nvs_flash_init again.
16ESP_ERR_NVS_VALUE_TOO_LONG4366components/nvs_flash/include/nvs.hValue doesn't fit into the entry or string or blob length is longer than supported by the implementation
17ESP_ERR_NVS_PART_NOT_FOUND4367components/nvs_flash/include/nvs.hPartition with specified name is not found in the partition table
18ESP_ERR_NVS_NEW_VERSION_FOUND4368components/nvs_flash/include/nvs.hNVS partition contains data in new format and cannot be recognized by this version of code
19ESP_ERR_NVS_XTS_ENCR_FAILED4369components/nvs_flash/include/nvs.hXTS encryption failed while writing NVS entry
20ESP_ERR_NVS_XTS_DECR_FAILED4370components/nvs_flash/include/nvs.hXTS decryption failed while reading NVS entry
21ESP_ERR_NVS_XTS_CFG_FAILED4371components/nvs_flash/include/nvs.hXTS configuration setting failed
22ESP_ERR_NVS_XTS_CFG_NOT_FOUND4372components/nvs_flash/include/nvs.hXTS configuration not found
23ESP_ERR_NVS_ENCR_NOT_SUPPORTED4373components/nvs_flash/include/nvs.hNVS encryption is not supported in this version
24ESP_ERR_NVS_KEYS_NOT_INITIALIZED4374components/nvs_flash/include/nvs.hNVS key partition is uninitialized
25ESP_ERR_NVS_CORRUPT_KEY_PART4375components/nvs_flash/include/nvs.hNVS key partition is corrupt
26ESP_ERR_NVS_CONTENT_DIFFERS4376components/nvs_flash/include/nvs.hInternal error; never returned by nvs API functions. NVS key is different in comparison
27ESP_ERR_NVS_WRONG_ENCRYPTION4377components/nvs_flash/include/nvs.hNVS partition is marked as encrypted with generic flash encryption. This is forbidden since the NVS encryption works differently.