In the simple_uart.c there is a code:
void simple_uart_put(uint8_t cr)
{
NRF_UART0->TXD = (uint8_t)cr;
while (NRF_UART0->EVENTS_TXDRDY != 1)
{
// Wait for the current TXD data to be sent.
}
NRF_UART0->EVENTS_TXDRDY = 0;
}
To make it more efficient, I tried to put the wait-loop in the beginning, so that the function would block only before the next character needs to be written into the TXD register. However, the function stopped working and lead me wonder if the while-loop could miss TXDRDY event in some case. Is the hardware clearing TXDRDY register automatically after a timeout, or why the software is not able to catch it in the version of the function below? In the very beginning of the program (initialization), I do write NRF_UART0->EVENTS_TXDRDY = 1, so that the while loop should pass when writing the first character. However, it seems to block.
void simple_uart_put(uint8_t cr)
{
while (NRF_UART0->EVENTS_TXDRDY != 1)
{
// Wait for the previous TXD data to be sent.
}
NRF_UART0->EVENTS_TXDRDY = 0;
NRF_UART0->TXD = (uint8_t)cr;
}
It looks a bit like hardware would clear TXDRDY automatically back to zero (after a while?), so why the line NRF_UART0->EVENTS_TXDRDY = 0 is still needed? And if it does clear automatically, would it be possible that in some cases (i.e. some interrupt occurring bad time) even the original code could miss the TXDRDY event and the function would block forever?