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:
commit
6fbb1a804d
|
@ -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)
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue