From 2039cd1e26d3d81fe4a5fd3d59925b3cf4ec872b Mon Sep 17 00:00:00 2001 From: Toon Stegen Date: Thu, 14 Apr 2016 16:03:14 +0200 Subject: [PATCH] tests/periph_uart: include uart_stdio.h This makes sure UART_STDIO_DEV is defined, so the init command fails when trying to use the shell UART as a parameter. --- tests/periph_uart/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/periph_uart/main.c b/tests/periph_uart/main.c index 940e745643..e960f5cfba 100644 --- a/tests/periph_uart/main.c +++ b/tests/periph_uart/main.c @@ -28,6 +28,7 @@ #include "msg.h" #include "ringbuffer.h" #include "periph/uart.h" +#include "uart_stdio.h" #define SHELL_BUFSIZE (128U) #define UART_BUFSIZE (128U)