From 7900132225cfd7bee2f1abca7e0da32ac5c85c56 Mon Sep 17 00:00:00 2001 From: Me No Dev Date: Thu, 21 Jul 2016 00:20:58 +0300 Subject: [PATCH] fix uart triggering wdt on recalling begin (#2307) --- cores/esp8266/uart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/esp8266/uart.c b/cores/esp8266/uart.c index 9f0f0eb1b..104a61570 100644 --- a/cores/esp8266/uart.c +++ b/cores/esp8266/uart.c @@ -371,7 +371,7 @@ void uart_uninit(uart_t* uart) if(uart->rx_enabled){ free(uart->rx_buffer->buffer); free(uart->rx_buffer); - //uart_stop_isr(uart); + uart_stop_isr(uart); } free(uart); }