3.5 KiB
3.5 KiB
| 1 | name | value | file | comment |
|---|---|---|---|---|
| 2 | ESP_ERR_NVS_BASE | 4352 | components/nvs_flash/include/nvs.h | Starting number of error codes |
| 3 | ESP_ERR_NVS_NOT_INITIALIZED | 4353 | components/nvs_flash/include/nvs.h | The storage driver is not initialized |
| 4 | ESP_ERR_NVS_NOT_FOUND | 4354 | components/nvs_flash/include/nvs.h | A requested entry couldn't be found or namespace doesn’t exist yet and mode is NVS_READONLY |
| 5 | ESP_ERR_NVS_TYPE_MISMATCH | 4355 | components/nvs_flash/include/nvs.h | The type of set or get operation doesn't match the type of value stored in NVS |
| 6 | ESP_ERR_NVS_READ_ONLY | 4356 | components/nvs_flash/include/nvs.h | Storage handle was opened as read only |
| 7 | ESP_ERR_NVS_NOT_ENOUGH_SPACE | 4357 | components/nvs_flash/include/nvs.h | There is not enough space in the underlying storage to save the value |
| 8 | ESP_ERR_NVS_INVALID_NAME | 4358 | components/nvs_flash/include/nvs.h | Namespace name doesn’t satisfy constraints |
| 9 | ESP_ERR_NVS_INVALID_HANDLE | 4359 | components/nvs_flash/include/nvs.h | Handle has been closed or is NULL |
| 10 | ESP_ERR_NVS_REMOVE_FAILED | 4360 | components/nvs_flash/include/nvs.h | The value wasn’t 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 doesn’t fail again. |
| 11 | ESP_ERR_NVS_KEY_TOO_LONG | 4361 | components/nvs_flash/include/nvs.h | Key name is too long |
| 12 | ESP_ERR_NVS_PAGE_FULL | 4362 | components/nvs_flash/include/nvs.h | Internal error; never returned by nvs API functions |
| 13 | ESP_ERR_NVS_INVALID_STATE | 4363 | components/nvs_flash/include/nvs.h | NVS is in an inconsistent state due to a previous error. Call nvs_flash_init and nvs_open again, then retry. |
| 14 | ESP_ERR_NVS_INVALID_LENGTH | 4364 | components/nvs_flash/include/nvs.h | String or blob length is not sufficient to store data |
| 15 | ESP_ERR_NVS_NO_FREE_PAGES | 4365 | components/nvs_flash/include/nvs.h | NVS 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. |
| 16 | ESP_ERR_NVS_VALUE_TOO_LONG | 4366 | components/nvs_flash/include/nvs.h | Value doesn't fit into the entry or string or blob length is longer than supported by the implementation |
| 17 | ESP_ERR_NVS_PART_NOT_FOUND | 4367 | components/nvs_flash/include/nvs.h | Partition with specified name is not found in the partition table |
| 18 | ESP_ERR_NVS_NEW_VERSION_FOUND | 4368 | components/nvs_flash/include/nvs.h | NVS partition contains data in new format and cannot be recognized by this version of code |
| 19 | ESP_ERR_NVS_XTS_ENCR_FAILED | 4369 | components/nvs_flash/include/nvs.h | XTS encryption failed while writing NVS entry |
| 20 | ESP_ERR_NVS_XTS_DECR_FAILED | 4370 | components/nvs_flash/include/nvs.h | XTS decryption failed while reading NVS entry |
| 21 | ESP_ERR_NVS_XTS_CFG_FAILED | 4371 | components/nvs_flash/include/nvs.h | XTS configuration setting failed |
| 22 | ESP_ERR_NVS_XTS_CFG_NOT_FOUND | 4372 | components/nvs_flash/include/nvs.h | XTS configuration not found |
| 23 | ESP_ERR_NVS_ENCR_NOT_SUPPORTED | 4373 | components/nvs_flash/include/nvs.h | NVS encryption is not supported in this version |
| 24 | ESP_ERR_NVS_KEYS_NOT_INITIALIZED | 4374 | components/nvs_flash/include/nvs.h | NVS key partition is uninitialized |
| 25 | ESP_ERR_NVS_CORRUPT_KEY_PART | 4375 | components/nvs_flash/include/nvs.h | NVS key partition is corrupt |
| 26 | ESP_ERR_NVS_CONTENT_DIFFERS | 4376 | components/nvs_flash/include/nvs.h | Internal error; never returned by nvs API functions. NVS key is different in comparison |
| 27 | ESP_ERR_NVS_WRONG_ENCRYPTION | 4377 | components/nvs_flash/include/nvs.h | NVS partition is marked as encrypted with generic flash encryption. This is forbidden since the NVS encryption works differently. |