sys/uart_stdio: cleanup

- removed duplicate include
- changed default device from '0' to UART_DEV(0)
This commit is contained in:
Hauke Petersen 2016-01-05 12:05:11 +01:00
parent 94c0cc86af
commit e071beab08

View File

@ -25,14 +25,11 @@
#include <stdio.h> #include <stdio.h>
#include "cpu_conf.h"
#include "tsrb.h" #include "tsrb.h"
#include "thread.h" #include "thread.h"
#include "mutex.h" #include "mutex.h"
#include "irq.h" #include "irq.h"
#include "periph/uart.h"
#include "board.h" #include "board.h"
#include "periph/uart.h" #include "periph/uart.h"
@ -40,7 +37,7 @@
#include "debug.h" #include "debug.h"
#ifndef STDIO #ifndef STDIO
#define STDIO (0) #define STDIO UART_DEV(0)
#endif #endif
#ifndef STDIO_BAUDRATE #ifndef STDIO_BAUDRATE