Commit d83437d1 authored by Johny Mattsson's avatar Johny Mattsson
Browse files

Removed left-over UART debug echo.

parent 4fead4a4
...@@ -125,7 +125,6 @@ static void uart0_rx_intr_handler (void *arg) ...@@ -125,7 +125,6 @@ static void uart0_rx_intr_handler (void *arg)
char c = UART_GET_RXFIFO_RD_BYTE(CONSOLE_UART); char c = UART_GET_RXFIFO_RD_BYTE(CONSOLE_UART);
if (uart0Q) if (uart0Q)
xQueueSendToBackFromISR (uart0Q, &c, NULL); xQueueSendToBackFromISR (uart0Q, &c, NULL);
uart_tx_one_char (c);
} }
WRITE_PERI_REG(UART_INT_CLR_REG(CONSOLE_UART), WRITE_PERI_REG(UART_INT_CLR_REG(CONSOLE_UART),
UART_RXFIFO_TOUT_INT_ENA | UART_RXFIFO_FULL_INT_ENA); UART_RXFIFO_TOUT_INT_ENA | UART_RXFIFO_FULL_INT_ENA);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment