Home
last modified time | relevance | path

Searched refs:ESP_ERR_NVS_KEY_TOO_LONG (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-3.6.0/zephyr/esp32/include/
Desp_nvs_adapter.h17 #define ESP_ERR_NVS_KEY_TOO_LONG (ESP_ERR_NVS_BASE + 0x09) /*!< Key name is too long */ macro
/hal_espressif-3.6.0/zephyr/esp32s3/include/
Desp_nvs_adapter.h17 #define ESP_ERR_NVS_KEY_TOO_LONG (ESP_ERR_NVS_BASE + 0x09) /*!< Key name is too long */ macro
/hal_espressif-3.6.0/components/esp_common/src/
Desp_err_to_name.c157 # ifdef ESP_ERR_NVS_KEY_TOO_LONG
158 …ERR_TBL_IT(ESP_ERR_NVS_KEY_TOO_LONG), /* 4361 0x1109 Key name is too long */
/hal_espressif-3.6.0/components/nvs_flash/include/
Dnvs.h38 #define ESP_ERR_NVS_KEY_TOO_LONG (ESP_ERR_NVS_BASE + 0x09) /*!< Key name is too long */ macro
/hal_espressif-3.6.0/components/nvs_flash/src/
Dnvs_page.cpp188 return ESP_ERR_NVS_KEY_TOO_LONG; in writeItem()
/hal_espressif-3.6.0/components/nvs_flash/test_nvs_host/
Dtest_nvs.cpp252 TEST_ESP_ERR(page.writeItem(1, "0123456789123456", 1), ESP_ERR_NVS_KEY_TOO_LONG);