mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
82f2e3d4e0
* updated some makefiles and fixed includes for msb430h
16 lines
309 B
C
16 lines
309 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("ukleos MSP430 hardware initialization complete.\n");
|
|
|
|
kernel_init();
|
|
}
|