mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
16 lines
307 B
C
16 lines
307 B
C
#include <stdio.h>
|
|
#include <kernel_intern.h>
|
|
|
|
extern void board_init(void);
|
|
|
|
__attribute__ ((constructor)) static void startup(void) {
|
|
/* use putchar so the linker links it in: */
|
|
putchar('\n');
|
|
|
|
board_init();
|
|
|
|
puts("RIOT MSP430 hardware initialization complete.\n");
|
|
|
|
kernel_init();
|
|
}
|