feat(eppp): Add support for UART flow control

Closes https://github.com/espressif/esp-protocols/issues/870
This commit is contained in:
David Cermak
2025-08-25 16:29:44 +02:00
parent 497ee2d6d4
commit cd57f1bb13
2 changed files with 9 additions and 2 deletions
+6
View File
@@ -34,6 +34,9 @@ extern "C" {
.rx_io = 26, \
.queue_size = 16, \
.rx_buffer_size = 1024, \
.rts_io = -1, \
.cts_io = -1, \
.flow_control = 0, \
}, \
#define EPPP_DEFAULT_SDIO_CONFIG() \
@@ -135,6 +138,9 @@ typedef struct eppp_config_t {
int rx_io;
int queue_size;
int rx_buffer_size;
int rts_io;
int cts_io;
int flow_control;
} uart;
struct eppp_config_sdio_s {