1 /*
2  * Copyright (C) 2015-2020 Alibaba Group Holding Limited
3  */
4 
5 #ifndef AMP_BOOT_H
6 #define AMP_BOOT_H
7 
8 #include <stdio.h>
9 #include <string.h>
10 #include "stdint.h"
11 #include "stdbool.h"
12 #include "amp_platform.h"
13 #include "amp_defines.h"
14 #include "amp_config.h"
15 #include "aos_system.h"
16 #include "aos_network.h"
17 #include "aos_fs.h"
18 #include "aos_hal_uart.h"
19 #include "amp_boot_recovery.h"
20 #include "amp_boot_uart.h"
21 #include "amp_boot_cmd.h"
22 
23 void aos_boot_delay(uint32_t ms);
24 void amp_boot_main(void);
25 
26 #endif