1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/cortexm_common: call cpu_init()

This commit is contained in:
Benjamin Valentin 2021-09-07 21:05:18 +02:00
parent 86da174be2
commit bcb0df8e18

View File

@ -181,6 +181,9 @@ void reset_handler_default(void)
dbgpin_init();
#endif
/* initialize the CPU */
cpu_init();
/* initialize the board (which also initiates CPU initialization) */
board_init();