From c7f28adad7871c60a5e8349a8e0752e47f5ee0b4 Mon Sep 17 00:00:00 2001 From: eightycc Date: Sat, 8 Feb 2025 08:42:14 -0800 Subject: [PATCH] Fix CIRCUITPY_PORT_SERIAL guard in serial_early_init. --- supervisor/shared/serial.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/shared/serial.c b/supervisor/shared/serial.c index 9ccf6d6659999..3873b1b6ba49d 100644 --- a/supervisor/shared/serial.c +++ b/supervisor/shared/serial.c @@ -198,12 +198,12 @@ void serial_early_init(void) { #if CIRCUITPY_PORT_SERIAL port_serial_early_init(); + #endif _serial_console_early_inited = true; // Do an initial print so that we can confirm the serial output is working. CIRCUITPY_CONSOLE_UART_PRINTF("Serial console setup\n"); - #endif } void serial_init(void) {