From: Michel Pollet Date: Wed, 14 Sep 2011 08:23:27 +0000 (+0100) Subject: tests: Revert a uart patch X-Git-Tag: v1.0a9 X-Git-Url: https://git.htl-mechatronik.at/public/?a=commitdiff_plain;h=a26a2e43fc4b547090f3069e121713702593261d;p=sx%2Fsimavr.git 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 --- 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;