在使用UART_write(Uart_RxBuf,1)发送数据时,连续使用两个该函数,会只发送成功一个。
UART_write(Uart_RxBuf,1);
UART_write(Uart_RxBuf,1);这样只会受到一次发送。可能是第二次使用该函数时,第一次的缓存数据还没有发送完成,请问该如何解决这个问题。
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.