Select one of the symbols to view example projects that use it.
 
Outline
#include <stdint.h>
#include <stddef.h>
#include <string.h>
#include "esp_err.h"
image_process_driver_s
image_process();
image_process_get_flash_segments_info(uint32_t *, uint32_t *);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_system/port/include/private/esp_private/image_process.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2023-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include <stdint.h> #include <stddef.h> #include <string.h> #include "esp_err.h" #ifdef __cplusplus extern "C" { #endif /** * @brief Image process driver *//* ... */ typedef struct image_process_driver_s image_process_driver_t; /** * @brief Image process flow * @note This API first reads the image header, then process the segments from the image header. * This API can be further inserted with more steps about the image processing by registering * more function pointer in `image_process_driver_t`. * * @return * - ESP_OK * - ESP_FAIL: image process flow fails *//* ... */ esp_err_t image_process(void); /** * @brief get flash segments info, only available after image_process() has been called * * @param[out] out_drom_paddr_start drom paddr start * @param[out] out_irom_paddr_start irom paddr start *//* ... */ void image_process_get_flash_segments_info(uint32_t *out_drom_paddr_start, uint32_t *out_irom_paddr_start); #ifdef __cplusplus }{...} #endif
Details
Show:
from
Types: Columns: