Skip to content
Snippets Groups Projects
Unverified Commit 2b23697c authored by Kaspar Schleiser's avatar Kaspar Schleiser Committed by GitHub
Browse files

Merge pull request #8347 from rienafairefr/msp-startup-log

puts => LOG_INFO for the MSP430 startup message
parents 1a09004c 1c632179
No related branches found
No related tags found
No related merge requests found
......@@ -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();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment