1 #include <stdio.h>
2 
app_main(void)3 void app_main(void)
4 {
5     /**
6      * Nothing special is done here, everything interesting in this example
7      * is done in the custom bootloader code, located in:
8      * `bootloader_components/my_boot_hooks/hooks.c`
9      */
10     printf("User application is loaded and running.\n");
11 }
12