From 60a9bfbcfaa73c14c1f16e6c446dfce98a72058b Mon Sep 17 00:00:00 2001 From: Graham Sanderson Date: Thu, 17 Jul 2025 11:29:42 -0500 Subject: [PATCH] Update src/rp2_common/pico_stdio_uart/stdio_uart.c Co-authored-by: Andrew Scheller --- src/rp2_common/pico_stdio_uart/stdio_uart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rp2_common/pico_stdio_uart/stdio_uart.c b/src/rp2_common/pico_stdio_uart/stdio_uart.c index 0f80003d..2e2619c1 100644 --- a/src/rp2_common/pico_stdio_uart/stdio_uart.c +++ b/src/rp2_common/pico_stdio_uart/stdio_uart.c @@ -129,7 +129,7 @@ void stdio_uart_deinit_full(struct uart_inst *uart, int tx_pin, int rx_pin) { stdio_set_driver_enabled(&stdio_uart, false); uart_deinit(uart_instance); #if HAS_PADS_BANK0_ISOLATION -// Leave pads isolated + // Leave pads isolated if (tx_pin >= 0) hw_set_bits(&pads_bank0_hw->io[tx_pin], PADS_BANK0_GPIO0_ISO_BITS); if (rx_pin >= 0) hw_set_bits(&pads_bank0_hw->io[rx_pin], PADS_BANK0_GPIO0_ISO_BITS); #else