1 /*
2  * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #include <stdio.h>
7 
app_main(void)8 void app_main(void)
9 {
10     /**
11      * Nothing special is done here, everything interesting in this example
12      * is done in the custom bootloader code, located in:
13      * `bootloader_components/main/bootloader_start.c`
14      */
15     printf("Application started!\n");
16 }
17