/* * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */#pragmaonce#include"esp_err.h"#include"esp_types.h"#include"sdkconfig.h"#ifdef__cplusplusextern"C"{#endif#defineESP_PARTITION_MAGIC0x50AA#defineESP_PARTITION_MAGIC_MD50xEBEB#definePART_TYPE_APP0x00#definePART_SUBTYPE_FACTORY0x00#definePART_SUBTYPE_OTA_FLAG0x10#definePART_SUBTYPE_OTA_MASK0x0f#definePART_SUBTYPE_TEST0x20#definePART_TYPE_DATA0x01#definePART_SUBTYPE_DATA_OTA0x00#definePART_SUBTYPE_DATA_RF0x01#definePART_SUBTYPE_DATA_WIFI0x02#definePART_SUBTYPE_DATA_NVS_KEYS0x04#definePART_SUBTYPE_DATA_EFUSE_EM0x05#definePART_TYPE_BOOTLOADER0x02#definePART_SUBTYPE_BOOTLOADER_PRIMARY0x00#definePART_SUBTYPE_BOOTLOADER_OTA0x01#definePART_TYPE_PARTITION_TABLE0x03#definePART_SUBTYPE_PARTITION_TABLE_PRIMARY0x00#definePART_SUBTYPE_PARTITION_TABLE_OTA0x01#definePART_TYPE_END0xff#definePART_SUBTYPE_END0xff#definePART_FLAG_ENCRYPTED(1<<0)#definePART_FLAG_READONLY(1<<1)/* The md5sum value is found this many bytes after the ESP_PARTITION_MAGIC_MD5 offset */#defineESP_PARTITION_MD5_OFFSET16/* Pre-partition table fixed flash offsets */#defineESP_BOOTLOADER_DIGEST_OFFSET0x0#defineESP_BOOTLOADER_OFFSETCONFIG_BOOTLOADER_OFFSET_IN_FLASH/* Offset of bootloader image. Has matching value in bootloader KConfig.projbuild file. */#defineESP_PRIMARY_BOOTLOADER_OFFSETCONFIG_BOOTLOADER_OFFSET_IN_FLASH/* Offset of Primary bootloader image. */#defineESP_PARTITION_TABLE_OFFSETCONFIG_PARTITION_TABLE_OFFSET/* Offset of partition table. Backwards-compatible name.*/#defineESP_PRIMARY_PARTITION_TABLE_OFFSETCONFIG_PARTITION_TABLE_OFFSET/* Offset of partition table. */#defineESP_PARTITION_TABLE_SIZE(0x1000)/* The partition table occupies 1 sector of flash (SPI_FLASH_SEC_SIZE) */#defineESP_BOOTLOADER_SIZE(ESP_PARTITION_TABLE_OFFSET-ESP_BOOTLOADER_OFFSET)#defineESP_PARTITION_TABLE_MAX_LEN0xC00/* Maximum length of partition table data */#defineESP_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.typedefenum{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 *//* ... */typedefstruct{uint32_tota_seq;uint8_tseq_label[20];uint32_tota_state;uint32_tcrc;/* CRC32 of ota_seq field only */}{ ... }esp_ota_select_entry_t;typedefstruct{uint32_toffset;uint32_tsize;}{ ... }esp_partition_pos_t;/* Structure which describes the layout of partition table entry. * See docs/partition_tables.rst for more information about individual fields. *//* ... */typedefstruct{uint16_tmagic;uint8_ttype;uint8_tsubtype;esp_partition_pos_tpos;uint8_tlabel[16];uint32_tflags;}{ ... }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_tesp_partition_table_verify(constesp_partition_info_t*partition_table,boollog_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. *//* ... */boolesp_partition_is_flash_region_writable(size_taddr,size_tsize);/** * 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. *//* ... */boolesp_partition_main_flash_region_safe(size_taddr,size_tsize);#ifdef__cplusplus}{...}#endif
Details
Show: from
Types: Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.