1
6
7
8
9
10
11
12
13
14
15
16
17
18
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
41
42
43
44
45
/* ... */
#pragma once
#include <stdint.h>
#include <stddef.h>
#include <string.h>
#include "esp_err.h"
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
typedef struct image_process_driver_s image_process_driver_t;
/* ... */
esp_err_t image_process(void);
/* ... */
void image_process_get_flash_segments_info(uint32_t *out_drom_paddr_start, uint32_t *out_irom_paddr_start);
#ifdef __cplusplus
}{...}
#endif