Skip to content

Commit 7900132

Browse files
authored
fix uart triggering wdt on recalling begin (#2307)
1 parent 6feecc5 commit 7900132

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/esp8266/uart.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ void uart_uninit(uart_t* uart)
371371
if(uart->rx_enabled){
372372
free(uart->rx_buffer->buffer);
373373
free(uart->rx_buffer);
374-
//uart_stop_isr(uart);
374+
uart_stop_isr(uart);
375375
}
376376
free(uart);
377377
}

0 commit comments

Comments
 (0)