Skip to content

Commit

Permalink
Serial: Separated uart events TX_COMPLETE from TX_DATA_EMPTY
Browse files Browse the repository at this point in the history
  Use UART_EVEN_TX_COMPLETE to determine when flush() should return
  • Loading branch information
Hsubtnarg authored and pennam committed Nov 29, 2024
1 parent 04d998d commit 862e4cb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
26 changes: 15 additions & 11 deletions cores/arduino/Serial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,14 @@ void UART::WrapperCallback(uart_callback_args_t *p_args) {
{
break;
}
case UART_EVENT_TX_COMPLETE:
case UART_EVENT_TX_DATA_EMPTY:
case UART_EVENT_TX_COMPLETE: // This is call when the transmission is complete
{
//uint8_t to_enqueue = uart_ptr->txBuffer.available() < uart_ptr->uart_ctrl.fifo_depth ? uart_ptr->txBuffer.available() : uart_ptr->uart_ctrl.fifo_depth;
//while (to_enqueue) {
uart_ptr->tx_done = true;
uart_ptr->tx_complete = true;
break;
}
case UART_EVENT_TX_DATA_EMPTY: // This is called when the buffer is empty
{ // Last byte is transmitting, but ready for more data
uart_ptr->tx_empty = true;
break;
}
case UART_EVENT_RX_CHAR:
Expand Down Expand Up @@ -109,9 +111,10 @@ bool UART::setUpUartIrqs(uart_cfg_t &cfg) {
size_t UART::write(uint8_t c) {
/* -------------------------------------------------------------------------- */
if(init_ok) {
tx_done = false;
tx_empty = false;
tx_complete = false;
R_SCI_UART_Write(&uart_ctrl, &c, 1);
while (!tx_done) {}
while (!tx_empty) {}
return 1;
}
else {
Expand All @@ -121,9 +124,10 @@ size_t UART::write(uint8_t c) {

size_t UART::write(uint8_t* c, size_t len) {
if(init_ok) {
tx_done = false;
tx_empty = false;
tx_complete = false;
R_SCI_UART_Write(&uart_ctrl, c, len);
while (!tx_done) {}
while (!tx_empty) {}
return len;
}
else {
Expand Down Expand Up @@ -322,7 +326,7 @@ int UART::read() {
/* -------------------------------------------------------------------------- */
void UART::flush() {
/* -------------------------------------------------------------------------- */
while(txBuffer.available());
while(!tx_complete);
}

/* -------------------------------------------------------------------------- */
Expand All @@ -335,4 +339,4 @@ size_t UART::write_raw(uint8_t* c, size_t len) {
i++;
}
return len;
}
}
3 changes: 2 additions & 1 deletion cores/arduino/Serial.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ class UART : public arduino::HardwareSerial {
arduino::SafeRingBufferN<SERIAL_BUFFER_SIZE> rxBuffer;
arduino::SafeRingBufferN<SERIAL_BUFFER_SIZE> txBuffer;

volatile bool tx_done;
volatile bool tx_empty;
volatile bool tx_complete;

sci_uart_instance_ctrl_t uart_ctrl;
uart_cfg_t uart_cfg;
Expand Down

0 comments on commit 862e4cb

Please sign in to comment.