mirror of
https://github.com/esphome/esphome.git
synced 2026-09-18 18:48:39 +00:00
[uart] init tx_pin, rx_pin, flow control, rx_buffer_size (#14524)
This commit is contained in:
@@ -183,10 +183,10 @@ class UARTComponent {
|
||||
virtual void check_logger_conflict() = 0;
|
||||
bool check_read_timeout_(size_t len = 1);
|
||||
|
||||
InternalGPIOPin *tx_pin_;
|
||||
InternalGPIOPin *rx_pin_;
|
||||
InternalGPIOPin *flow_control_pin_;
|
||||
size_t rx_buffer_size_;
|
||||
InternalGPIOPin *tx_pin_{};
|
||||
InternalGPIOPin *rx_pin_{};
|
||||
InternalGPIOPin *flow_control_pin_{};
|
||||
size_t rx_buffer_size_{};
|
||||
size_t rx_full_threshold_{1};
|
||||
size_t rx_timeout_{0};
|
||||
uint32_t baud_rate_{0};
|
||||
|
||||
Reference in New Issue
Block a user