From 5b09a22d88de54165e7c5413c28a0ea72d460ce7 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Thu, 20 Mar 2025 18:50:28 +0100 Subject: [PATCH] btstack_uart: add defines for flow control --- src/btstack_uart.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/btstack_uart.h b/src/btstack_uart.h index 106f89394..192134ad9 100644 --- a/src/btstack_uart.h +++ b/src/btstack_uart.h @@ -56,6 +56,9 @@ extern "C" { #define BTSTACK_UART_PARITY_EVEN 1 #define BTSTACK_UART_PARITY_ODD 2 +#define BTSTACK_UART_FLOWCONTROL_ON 1 +#define BTSTACK_UART_FLOWCONTROL_OFF 0 + typedef enum { // UART active, sleep off BTSTACK_UART_SLEEP_OFF = 0,