1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-23 19:21:59 +03:00

fix uart triggering wdt on recalling begin (#2307)

This commit is contained in:
Me No Dev
2016-07-21 00:20:58 +03:00
committed by GitHub
parent 6feecc5122
commit 7900132225

View File

@ -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);
}