NUC123 add early_init to allow build of projects that need it to be defined

This commit is contained in:
Reza Jelveh 2020-12-31 15:51:19 +08:00
parent a9c5088165
commit 74bcf3cf69
1 changed files with 9 additions and 0 deletions

View File

@ -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)
{
}