From d83437d1ba66e7dbe9edaad33e916343b9c086cc Mon Sep 17 00:00:00 2001 From: Johny Mattsson Date: Wed, 5 Oct 2016 14:36:24 +1100 Subject: [PATCH] Removed left-over UART debug echo. --- components/driver_console/console.c | 1 - 1 file changed, 1 deletion(-) diff --git a/components/driver_console/console.c b/components/driver_console/console.c index c9813189..013f705e 100644 --- a/components/driver_console/console.c +++ b/components/driver_console/console.c @@ -125,7 +125,6 @@ static void uart0_rx_intr_handler (void *arg) char c = UART_GET_RXFIFO_RD_BYTE(CONSOLE_UART); if (uart0Q) xQueueSendToBackFromISR (uart0Q, &c, NULL); -uart_tx_one_char (c); } WRITE_PERI_REG(UART_INT_CLR_REG(CONSOLE_UART), UART_RXFIFO_TOUT_INT_ENA | UART_RXFIFO_FULL_INT_ENA);