Serial interrupt

This commit is contained in:
Mark Qvist 2020-05-28 18:18:35 +02:00
parent 6f19e643c3
commit 0b78bce168
2 changed files with 2 additions and 2 deletions

View file

@ -84,7 +84,7 @@ ISR(USART0_RX_vect) {
char c = uart0_getchar_nowait();
fifo_push(&uart0FIFO, c);
} else {
uart1_getchar_nowait();
uart0_getchar_nowait();
}
}
}