Revert "Uart tx irq handling fix " (issue #554)
This reverts commit 6885770e47
.
This commit is contained in:
parent
3978af9c39
commit
22f4637570
|
@ -49,11 +49,11 @@ void uart_isr(void)
|
|||
}
|
||||
|
||||
if(stat & UART_EV_TX) {
|
||||
uart_ev_pending_write(UART_EV_TX);
|
||||
while((tx_consume != tx_produce) && !uart_txfull_read()) {
|
||||
uart_rxtx_write(tx_buf[tx_consume]);
|
||||
tx_consume = (tx_consume + 1) & UART_RINGBUFFER_MASK_TX;
|
||||
}
|
||||
uart_ev_pending_write(UART_EV_TX);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue