Skip to content

Commit 1a0c10c

Browse files
committed
Fix debug UART call
1 parent ceb2efc commit 1a0c10c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

supervisor/shared/serial.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void serial_early_init(void) {
5555
const mcu_pin_obj_t* tx = MP_OBJ_TO_PTR(DEBUG_UART_TX);
5656

5757
common_hal_busio_uart_construct(&debug_uart, tx, rx, NULL, NULL, NULL,
58-
false, 115200, 8, PARITY_NONE, 1, 1.0f, 64,
58+
false, 115200, 8, UART_PARITY_NONE, 1, 1.0f, 64,
5959
buf_array, true);
6060
common_hal_busio_uart_never_reset(&debug_uart);
6161
#endif

0 commit comments

Comments
 (0)