X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Favr%2Fao_avr_stdio.c;h=f9c0f88c7e33474f666e4bd04984d3368371bce2;hb=bc3610d8cecbfed40c62d4dcb93fc9a4d2a7c9e3;hp=2765853aa92237bc3f7c505efcacdec4c777959c;hpb=42a51becf4b76f23dbd4f5f80f8879ce696aa543;p=fw%2Faltos diff --git a/src/avr/ao_avr_stdio.c b/src/avr/ao_avr_stdio.c index 2765853a..f9c0f88c 100644 --- a/src/avr/ao_avr_stdio.c +++ b/src/avr/ao_avr_stdio.c @@ -20,16 +20,7 @@ int stdio_put(char c, FILE *stream) { - if (ao_cur_task && ao_num_stdios) - putchar(c); - else - { - if (c == '\n') - stdio_put('\r', stream); - loop_until_bit_is_set(UCSR1A, UDRE1); - UDR1 = c; - } - + putchar(c); return 0; }