LEON: let termios layer handle \n also in polling

This commit is contained in:
Daniel Hellstrom
2014-10-07 11:37:36 +02:00
parent b4cebd0560
commit 44bbee0984

View File

@@ -78,7 +78,7 @@ static void apbuart_write_polled(
size_t nwrite = 0;
while (nwrite < len) {
apbuart_outbyte_polled(uart->regs, *buf++, 1, 0);
apbuart_outbyte_polled(uart->regs, *buf++, 0, 0);
nwrite++;
}
}