From 66dd44161065cc920426cf7ca43606ec35024920 Mon Sep 17 00:00:00 2001 From: Allen Hill Date: Thu, 13 Aug 2026 16:48:44 -0700 Subject: [PATCH] Max the UART TX buffer size --- .../avr-attiny3216/vendor/jnk0le-AVR-UART-lib/usart_config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/avclan/target/avr-attiny3216/vendor/jnk0le-AVR-UART-lib/usart_config.h b/src/avclan/target/avr-attiny3216/vendor/jnk0le-AVR-UART-lib/usart_config.h index a09e170..fdba83f 100644 --- a/src/avclan/target/avr-attiny3216/vendor/jnk0le-AVR-UART-lib/usart_config.h +++ b/src/avclan/target/avr-attiny3216/vendor/jnk0le-AVR-UART-lib/usart_config.h @@ -108,11 +108,11 @@ // Size of the ring buffers, must be power of 2 // default 32 -#define RX_BUFFER_SIZE 64 +#define RX_BUFFER_SIZE 128 // Size of the ring buffers, must be power of 2 // default 32 -#define TX_BUFFER_SIZE 128 +#define TX_BUFFER_SIZE 256 /*******************config for multiple USART * mcu's*************************/