1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/z1, telosb: remove obsolete stdio_init() calls

This commit is contained in:
Kaspar Schleiser 2019-02-25 23:14:05 +01:00
parent a0bf7f74ce
commit 5392b8c72d
2 changed files with 0 additions and 8 deletions

View File

@ -9,7 +9,6 @@
#include "cpu.h"
#include "board.h"
#include "stdio_uart.h"
void uart_init(void);
@ -122,9 +121,6 @@ void board_init(void)
telosb_ports_init();
msp430_init_dco();
/* initialize STDIO */
stdio_init();
/* enable interrupts */
__bis_SR_register(GIE);
}

View File

@ -24,7 +24,6 @@
#include "cpu.h"
#include "board.h"
#include "stdio_uart.h"
static void z1_ports_init(void)
{
@ -215,9 +214,6 @@ void board_init(void)
/* initializes DCO */
msp430_init_dco();
/* initialize STDIO */
stdio_init();
/* enable interrupts */
__bis_SR_register(GIE);
}