mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge pull request #8347 from rienafairefr/msp-startup-log
puts => LOG_INFO for the MSP430 startup message
This commit is contained in:
commit
2b23697ca3
@ -22,6 +22,7 @@
|
||||
#include <stdio.h>
|
||||
#include "kernel_init.h"
|
||||
#include "irq.h"
|
||||
#include "log.h"
|
||||
|
||||
extern void board_init(void);
|
||||
|
||||
@ -32,7 +33,7 @@ __attribute__((constructor)) static void startup(void)
|
||||
|
||||
board_init();
|
||||
|
||||
puts("RIOT MSP430 hardware initialization complete.\n");
|
||||
LOG_INFO("RIOT MSP430 hardware initialization complete.\n");
|
||||
|
||||
kernel_init();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user