uart_tx_chars() function
Send data to the UART port from a given buffer and length. This function will not wait for enough space in TX FIFO. It will just fill the available TX FIFO and return when the FIFO is full.
Arguments
uart_num
UART port number, the max port number is (UART_NUM_MAX -1).
buffer
data buffer address
Return value
- (-1) Parameter error - OTHERS (>=0) The number of bytes pushed to the TX FIFO
Notes
This function should only be used when UART TX buffer is not enabled.