feat(bootloader): add the possibility to specify extra components directories

This commit is contained in:
Omar Chebib
2024-09-10 15:10:34 +08:00
parent a2f3585030
commit 775c65a6b7
13 changed files with 152 additions and 8 deletions
@@ -0,0 +1,2 @@
idf_component_register(SRCS "bootloader_hooks_example_main.c"
INCLUDE_DIRS ".")
@@ -0,0 +1,11 @@
/*
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Unlicense OR CC0-1.0
*/
#include <stdio.h>
void app_main(void)
{
printf("User application is loaded and running.\n");
}