Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion uart/lcd_uart/lcd_uart.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ int main() {

while (1) {
// send any chars from stdio straight to the backpack
char c = uart_getc(uart_default);
char c = uart_getc(UART_ID);
// any bytes not followed by 0xFE (the special command) are interpreted
// as text to be displayed on the backpack, so we just send the char
// down the UART byte pipe!
Expand Down