blob: 480022c2910db6ac3c34a500a2c97db2a1c46978 [file] [log] [blame]
Shubham Kulkarni8787bb02021-07-20 11:46:03 +05301/*
2 * Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#pragma once
8
Almir Okatoc4b30582022-05-06 14:59:43 -03009void start_cpu0_image(int image_index, int slot, unsigned int hdr_offset);
10#ifdef CONFIG_ESP_MULTI_PROCESSOR_BOOT
11void start_cpu1_image(int image_index, int slot, unsigned int hdr_offset);
12#endif
13
Almir Okatoa1d641d2022-02-21 19:31:46 -030014void esp_app_image_load(int image_index, int slot, unsigned int hdr_offset, unsigned int *entry_addr);