bootloader_override_example_main.c 409 B

12345678910111213141516
  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. void app_main(void)
  8. {
  9. /**
  10. * Nothing special is done here, everything interesting in this example
  11. * is done in the custom bootloader code, located in:
  12. * `bootloader_components/main/bootloader_start.c`
  13. */
  14. printf("Application started!\n");
  15. }