bootloader_hooks_example_main.c 304 B

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