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.

为什么UART的RX中断触发一次后就不在触发了 ?

Other Parts Discussed in Thread: EK-TM4C123GXL

void UART1_Handler(void)
{
if(UARTIntStatus(UART1_BASE,true) == UART_INT_RX)
{
UARTIntClear(UART1_BASE,UART_INT_RX);

}};