Merge pull request #10043 from eightycc/pull-10026

Fix CIRCUITPY_PORT_SERIAL guard in serial_early_init.
This commit is contained in:
Dan Halbert 2025-02-08 13:48:22 -05:00 committed by GitHub
commit e19ff435d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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) {