From 74bcf3cf69243b9d8c6c40cbfddde7730d6bc04b Mon Sep 17 00:00:00 2001 From: Reza Jelveh Date: Thu, 31 Dec 2020 15:51:19 +0800 Subject: [PATCH] NUC123 add early_init to allow build of projects that need it to be defined --- os/hal/boards/NUTINY-SDK-NUC123-V2.0/board.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/os/hal/boards/NUTINY-SDK-NUC123-V2.0/board.c b/os/hal/boards/NUTINY-SDK-NUC123-V2.0/board.c index e2d4e479..8829c43f 100644 --- a/os/hal/boards/NUTINY-SDK-NUC123-V2.0/board.c +++ b/os/hal/boards/NUTINY-SDK-NUC123-V2.0/board.c @@ -29,3 +29,12 @@ void boardInit(void) OnboardLED_Init(); #endif } + +/** + * @brief Early initialization code. + * @details This initialization is performed just after reset before BSS and + * DATA segments initialization. + */ +void __early_init(void) +{ +}