Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_err.h"
#include "nvs_partition.hpp"
#include "nvs_flash.h"
#define NVS_PARTITION_LOOKUP_HPP_
nvs
Files
loading (3/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/nvs_flash/src/nvs_partition_lookup.hpp
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
#include "esp_err.h" #include "nvs_partition.hpp" #include "nvs_flash.h" #ifndef NVS_PARTITION_LOOKUP_HPP_ #define NVS_PARTITION_LOOKUP_HPP_ namespace nvs { namespace partition_lookup { esp_err_t lookup_nvs_partition(const char* label, NVSPartition **p); esp_err_t lookup_nvs_encrypted_partition(const char* label, nvs_sec_cfg_t* cfg, NVSPartition **p); }{...} // partition_lookup }{...} // nvs /* ... */ #endif // NVS_PARTITION_LOOKUP_HPP_
Details