Fix minor compile error due to uninitialized field

This commit is contained in:
erki 2023-06-21 19:09:18 +03:00
parent 59707f3775
commit 2e4171fac4

View File

@ -24,6 +24,7 @@ QueueHandle_t setupSerial(const uart_port_t uart)
.parity = UART_PARITY_DISABLE,
.stop_bits = UART_STOP_BITS_1,
.flow_ctrl = UART_HW_FLOWCTRL_DISABLE,
.rx_flow_ctrl_thresh = UART_HW_FLOWCTRL_DISABLE,
.source_clk = UART_SCLK_DEFAULT,
};