mirror of
https://github.com/apache/nuttx.git
synced 2026-09-02 23:23:02 +00:00
A10: Handle UART BUSY interrupt; Back out change to mkconfig.c -- it causes problems for assembly
This commit is contained in:
parent
e40cc00b06
commit
25abb10ef3
1 changed files with 6 additions and 1 deletions
|
|
@ -1173,12 +1173,17 @@ static int uart_interrupt(struct uart_dev_s *dev)
|
|||
break;
|
||||
}
|
||||
|
||||
/* Busy detect. Just ignore. Cleared by reading the status register */
|
||||
|
||||
case UART_IIR_IID_BUSY:
|
||||
break;
|
||||
|
||||
/* Otherwise, there is no (handled) interrupt pending */
|
||||
|
||||
case UART_IIR_IID_NONE:
|
||||
default:
|
||||
{
|
||||
dbg("Unexpected IIR: %02x\n", status);
|
||||
lldbg("Unexpected IIR: %02x\n", status);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue