Merge pull request #249 from fishman/add_early_init_to_nuc123_board

NUC123 add early_init to allow build of projects that need it to be defined
This commit is contained in:
Fabien Poussin 2020-12-31 10:18:46 +01:00 committed by GitHub
commit 6fbb1a804d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)
{
}