ESP-IDF + 0/2 examples
SourceVu will show references to esp_image_header_t from the following samples and libraries:
 
Symbols
loading...
Files
loading...
SummarySyntaxRelatedReferences

Fields

Field
Declared as
Description
uint8_t
Magic word ESP_IMAGE_HEADER_MAGIC.
uint8_t
Count of memory segments.
uint8_t
flash read mode (esp_image_spi_mode_t as uint8_t).
uint8_t: 4
flash frequency (esp_image_spi_freq_t as uint8_t).
uint8_t: 4
flash chip size (esp_image_flash_size_t as uint8_t).
uint32_t
Entry address.
uint8_t
WP pin when SPI pins set via efuse (read by ROM bootloader, the IDF bootloader uses software to configure the WP pin and sets this field to 0xEE=disabled).
uint8_t[3]
Drive settings for the SPI flash pins (read by ROM bootloader).
Chip identification number.
uint8_t
Minimal chip revision supported by image After the Major and Minor revision eFuses were introduced into the chips, this field is no longer used. But for compatibility reasons, we keep this field and the data in it. Use min_chip_rev_full instead. The software interprets this as a Major version for most of the chips and as a Minor version for the ESP32-C3.
uint16_t
Minimal chip revision supported by image, in format: major * 100 + minor.
uint16_t
Maximal chip revision supported by image, in format: major * 100 + minor.
uint8_t[4]
Reserved bytes in additional header space, currently unused.
uint8_t
If 1, a SHA256 digest "simple hash" (of the entire image) is appended after the checksum. Included in image length. This digest is separate to secure boot and only used for detecting corruption. For secure boot signed images, the signature is appended after this (and the simple hash is included in the signed data).

References

from examples