1
0
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:
Kaspar Schleiser 2018-01-11 11:38:35 +01:00 committed by GitHub
commit 2b23697ca3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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();
}