1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-27 05:03:48 +00:00

Misc fixes for esp-idf (#2386)

This commit is contained in:
Otto Winter
2021-09-25 10:05:32 +02:00
committed by GitHub
parent d344b1ca0e
commit 5342edf04a
2 changed files with 11 additions and 7 deletions

View File

@@ -176,13 +176,12 @@ void Logger::pre_setup() {
uart_num_ = UART_NUM_2;
break;
}
uart_config_t uart_config = {
.baud_rate = (int) baud_rate_,
.data_bits = UART_DATA_8_BITS,
.parity = UART_PARITY_DISABLE,
.stop_bits = UART_STOP_BITS_1,
.flow_ctrl = UART_HW_FLOWCTRL_DISABLE,
};
uart_config_t uart_config{};
uart_config.baud_rate = (int) baud_rate_;
uart_config.data_bits = UART_DATA_8_BITS;
uart_config.parity = UART_PARITY_DISABLE;
uart_config.stop_bits = UART_STOP_BITS_1;
uart_config.flow_ctrl = UART_HW_FLOWCTRL_DISABLE;
uart_param_config(uart_num_, &uart_config);
const int uart_buffer_size = tx_buffer_size_;
// Install UART driver using an event queue here