Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_err.h"
#include "esp_types.h"
#include "sdkconfig.h"
#define ESP_PARTITION_MAGIC
#define ESP_PARTITION_MAGIC_MD5
#define PART_TYPE_APP
#define PART_SUBTYPE_FACTORY
#define PART_SUBTYPE_OTA_FLAG
#define PART_SUBTYPE_OTA_MASK
#define PART_SUBTYPE_TEST
#define PART_TYPE_DATA
#define PART_SUBTYPE_DATA_OTA
#define PART_SUBTYPE_DATA_RF
#define PART_SUBTYPE_DATA_WIFI
#define PART_SUBTYPE_DATA_NVS_KEYS
#define PART_SUBTYPE_DATA_EFUSE_EM
#define PART_TYPE_BOOTLOADER
#define PART_SUBTYPE_BOOTLOADER_PRIMARY
#define PART_SUBTYPE_BOOTLOADER_OTA
#define PART_TYPE_PARTITION_TABLE
#define PART_SUBTYPE_PARTITION_TABLE_PRIMARY
#define PART_SUBTYPE_PARTITION_TABLE_OTA
#define PART_TYPE_END
#define PART_SUBTYPE_END
#define PART_FLAG_ENCRYPTED
#define PART_FLAG_READONLY
#define ESP_PARTITION_MD5_OFFSET
#define ESP_BOOTLOADER_DIGEST_OFFSET
#define ESP_BOOTLOADER_OFFSET
#define ESP_PRIMARY_BOOTLOADER_OFFSET
#define ESP_PARTITION_TABLE_OFFSET
#define ESP_PRIMARY_PARTITION_TABLE_OFFSET
#define ESP_PARTITION_TABLE_SIZE
#define ESP_BOOTLOADER_SIZE
#define ESP_PARTITION_TABLE_MAX_LEN
#define ESP_PARTITION_TABLE_MAX_ENTRIES
esp_ota_img_states_t
esp_ota_select_entry_t
esp_partition_pos_t
esp_partition_info_t
esp_partition_table_verify(const esp_partition_info_t *, bool, int *);
esp_partition_is_flash_region_writable(size_t, size_t);
esp_partition_main_flash_region_safe(size_t, size_t);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bootloader_support/include/esp_flash_partitions.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include "esp_err.h" #include "esp_types.h" #include "sdkconfig.h" #ifdef __cplusplus extern "C" { #endif #define ESP_PARTITION_MAGIC 0x50AA #define ESP_PARTITION_MAGIC_MD5 0xEBEB #define PART_TYPE_APP 0x00 #define PART_SUBTYPE_FACTORY 0x00 #define PART_SUBTYPE_OTA_FLAG 0x10 #define PART_SUBTYPE_OTA_MASK 0x0f #define PART_SUBTYPE_TEST 0x20 #define PART_TYPE_DATA 0x01 #define PART_SUBTYPE_DATA_OTA 0x00 #define PART_SUBTYPE_DATA_RF 0x01 #define PART_SUBTYPE_DATA_WIFI 0x02 #define PART_SUBTYPE_DATA_NVS_KEYS 0x04 #define PART_SUBTYPE_DATA_EFUSE_EM 0x05 #define PART_TYPE_BOOTLOADER 0x02 #define PART_SUBTYPE_BOOTLOADER_PRIMARY 0x00 #define PART_SUBTYPE_BOOTLOADER_OTA 0x01 #define PART_TYPE_PARTITION_TABLE 0x03 #define PART_SUBTYPE_PARTITION_TABLE_PRIMARY 0x00 #define PART_SUBTYPE_PARTITION_TABLE_OTA 0x01 #define PART_TYPE_END 0xff #define PART_SUBTYPE_END 0xff #define PART_FLAG_ENCRYPTED (1<<0) #define PART_FLAG_READONLY (1<<1) /* The md5sum value is found this many bytes after the ESP_PARTITION_MAGIC_MD5 offset */ #define ESP_PARTITION_MD5_OFFSET 16 /* Pre-partition table fixed flash offsets */ #define ESP_BOOTLOADER_DIGEST_OFFSET 0x0 #define ESP_BOOTLOADER_OFFSET CONFIG_BOOTLOADER_OFFSET_IN_FLASH /* Offset of bootloader image. Has matching value in bootloader KConfig.projbuild file. */ #define ESP_PRIMARY_BOOTLOADER_OFFSET CONFIG_BOOTLOADER_OFFSET_IN_FLASH /* Offset of Primary bootloader image. */ #define ESP_PARTITION_TABLE_OFFSET CONFIG_PARTITION_TABLE_OFFSET /* Offset of partition table. Backwards-compatible name.*/ #define ESP_PRIMARY_PARTITION_TABLE_OFFSET CONFIG_PARTITION_TABLE_OFFSET /* Offset of partition table. */ #define ESP_PARTITION_TABLE_SIZE (0x1000) /* The partition table occupies 1 sector of flash (SPI_FLASH_SEC_SIZE) */ #define ESP_BOOTLOADER_SIZE (ESP_PARTITION_TABLE_OFFSET - ESP_BOOTLOADER_OFFSET) #define ESP_PARTITION_TABLE_MAX_LEN 0xC00 /* Maximum length of partition table data */ #define ESP_PARTITION_TABLE_MAX_ENTRIES (ESP_PARTITION_TABLE_MAX_LEN / sizeof(esp_partition_info_t)) /* Maximum length of partition table data, including terminating entry */33 defines /// OTA_DATA states for checking operability of the app. typedef enum { ESP_OTA_IMG_NEW = 0x0U, /*!< Monitor the first boot. In bootloader this state is changed to ESP_OTA_IMG_PENDING_VERIFY. */ ESP_OTA_IMG_PENDING_VERIFY = 0x1U, /*!< First boot for this app was. If while the second boot this state is then it will be changed to ABORTED. */ ESP_OTA_IMG_VALID = 0x2U, /*!< App was confirmed as workable. App can boot and work without limits. */ ESP_OTA_IMG_INVALID = 0x3U, /*!< App was confirmed as non-workable. This app will not selected to boot at all. */ ESP_OTA_IMG_ABORTED = 0x4U, /*!< App could not confirm the workable or non-workable. In bootloader IMG_PENDING_VERIFY state will be changed to IMG_ABORTED. This app will not selected to boot at all. */ ESP_OTA_IMG_UNDEFINED = 0xFFFFFFFFU, /*!< Undefined. App can boot and work without limits. */ }{ ... } esp_ota_img_states_t; /* OTA selection structure (two copies in the OTA data partition.) Size of 32 bytes is friendly to flash encryption *//* ... */ typedef struct { uint32_t ota_seq; uint8_t seq_label[20]; uint32_t ota_state; uint32_t crc; /* CRC32 of ota_seq field only */ }{ ... } esp_ota_select_entry_t; typedef struct { uint32_t offset; uint32_t size; }{ ... } esp_partition_pos_t; /* Structure which describes the layout of partition table entry. * See docs/partition_tables.rst for more information about individual fields. *//* ... */ typedef struct { uint16_t magic; uint8_t type; uint8_t subtype; esp_partition_pos_t pos; uint8_t label[16]; uint32_t flags; }{ ... } esp_partition_info_t; /* @brief Verify the partition table * * @param partition_table Pointer to at least ESP_PARTITION_TABLE_MAX_ENTRIES of potential partition table data. (ESP_PARTITION_TABLE_MAX_LEN bytes.) * @param log_errors Log errors if the partition table is invalid. * @param num_partitions If result is ESP_OK, num_partitions is updated with total number of partitions (not including terminating entry). * * @return ESP_OK on success, ESP_ERR_INVALID_STATE if partition table is not valid. *//* ... */ esp_err_t esp_partition_table_verify(const esp_partition_info_t *partition_table, bool log_errors, int *num_partitions); /** * Check whether the region on the main flash is not read-only. * * @param addr Start address of the region * @param size Size of the region * * @return true if the region is safe to write, otherwise false. *//* ... */ bool esp_partition_is_flash_region_writable(size_t addr, size_t size); /** * Check whether the region on the main flash is safe to write. * * @param addr Start address of the region * @param size Size of the region * * @return true if the region is safe to write, otherwise false. *//* ... */ bool esp_partition_main_flash_region_safe(size_t addr, size_t size); #ifdef __cplusplus }{...} #endif
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.