From eefda572bfbd7d608bebe2ea911eee3beecf2da2 Mon Sep 17 00:00:00 2001 From: Andy CA6JAU Date: Tue, 4 Jul 2017 00:18:22 -0400 Subject: [PATCH] Increasing STM serial port buffer --- SerialSTM.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SerialSTM.cpp b/SerialSTM.cpp index 3762f92..d8dd0d7 100644 --- a/SerialSTM.cpp +++ b/SerialSTM.cpp @@ -41,8 +41,8 @@ USART2 - TXD PA2 - RXD PA3 */ -#define TX_SERIAL_FIFO_SIZE 256U -#define RX_SERIAL_FIFO_SIZE 256U +#define TX_SERIAL_FIFO_SIZE 512U +#define RX_SERIAL_FIFO_SIZE 512U #if defined(STM32_USART1_HOST)