pub unsafe extern "C" fn nvs_flash_init_partition(
    partition_label: *const c_char
) -> esp_err_t
Expand description

@brief Initialize NVS flash storage for the specified partition.

@param[in] partition_label Label of the partition. Must be no longer than 16 characters.

@return - ESP_OK if storage was successfully initialized. - ESP_ERR_NVS_NO_FREE_PAGES if the NVS storage contains no empty pages (which may happen if NVS partition was truncated) - ESP_ERR_NOT_FOUND if specified partition is not found in the partition table - ESP_ERR_NO_MEM in case memory could not be allocated for the internal structures - one of the error codes from the underlying flash storage driver