Merge branch 'fix_logger_uart_event_queue' into integration

This commit is contained in:
J. Nick Koston
2026-02-20 19:50:36 -06:00

View File

@@ -78,8 +78,7 @@ void init_uart(uart_port_t uart_num, uint32_t baud_rate, int tx_buffer_size) {
uart_config.source_clk = UART_SCLK_DEFAULT;
uart_param_config(uart_num, &uart_config);
const int uart_buffer_size = tx_buffer_size;
// Install UART driver using an event queue here
uart_driver_install(uart_num, uart_buffer_size, uart_buffer_size, 10, nullptr, 0);
uart_driver_install(uart_num, uart_buffer_size, uart_buffer_size, 0, nullptr, 0);
}
void Logger::pre_setup() {