Home
last modified time | relevance | path

Searched refs:ESP_IMAGE_MAX_SEGMENTS (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-latest/components/bootloader_support/include/
Desp_image_format.h32 esp_image_segment_header_t segments[ESP_IMAGE_MAX_SEGMENTS]; /* Per-segment header data */
33 uint32_t segment_data[ESP_IMAGE_MAX_SEGMENTS]; /* Data offsets for each segment */
Desp_app_format.h113 #define ESP_IMAGE_MAX_SEGMENTS 16 /*!< Max count of segments in the image. */ macro
/hal_espressif-latest/components/bootloader_support/src/
Desp_image_format.c351 if (image->segment_count > ESP_IMAGE_MAX_SEGMENTS) { in verify_image_header()
352 …"PRIx32" segment count %d exceeds max %d", src_addr, image->segment_count, ESP_IMAGE_MAX_SEGMENTS); in verify_image_header()