esp-idf/examples/custom_bootloader/bootloader_override/main/bootloader_override_example...

17 wiersze
409 B
C

/*
* SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <stdio.h>
void app_main(void)
{
/**
* Nothing special is done here, everything interesting in this example
* is done in the custom bootloader code, located in:
* `bootloader_components/main/bootloader_start.c`
*/
printf("Application started!\n");
}