Fixed GPS serial querying

This commit is contained in:
Mark Qvist 2020-06-01 21:27:38 +02:00
parent 4bc42d6379
commit a453fc9544
2 changed files with 3 additions and 3 deletions

View file

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