4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-30 05:50:22 +08:00

Update uart.c

iir = LPC_Uart->LSR;	//oe pe fe oe read for clear interrupt
This commit is contained in:
winfeng 2015-10-30 14:41:21 +08:00
parent 78193f3c40
commit 8a73dc1be6

View File

@ -89,6 +89,9 @@ void UART0_IRQHandler(void)
uart->parent.rx_indicate(&uart->parent, length);
}
}else if(iir == IIR_RLS)
{
iir = LPC_Uart->LSR; //oe pe fe oe read for clear interrupt
}
return;