From a26a2e43fc4b547090f3069e121713702593261d Mon Sep 17 00:00:00 2001 From: Michel Pollet Date: Wed, 14 Sep 2011 09:23:27 +0100 Subject: [PATCH] tests: Revert a uart patch We do need the translation, as it's not one, but generation of \n\r Signed-off-by: Michel Pollet --- tests/atmega88_uart_echo.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/atmega88_uart_echo.c b/tests/atmega88_uart_echo.c index e65fd56..31f0ab4 100644 --- a/tests/atmega88_uart_echo.c +++ b/tests/atmega88_uart_echo.c @@ -36,11 +36,10 @@ const struct avr_mmcu_vcd_trace_t _mytrace[] _MMCU_ = { { AVR_MCU_VCD_SYMBOL("GPIOR1"), .what = (void*)&GPIOR1, }, }; -static int uart_putchar(char c, FILE *stream) { -#if 0 // don't want character translation for this test +static int uart_putchar(char c, FILE *stream) +{ if (c == '\n') uart_putchar('\r', stream); -#endif loop_until_bit_is_set(UCSR0A, UDRE0); UDR0 = c; return 0; -- 2.20.1