From 54b2a41ec077494bcd83160a1510638649ad88e4 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Wed, 1 Jul 2026 17:18:38 -0400 Subject: [PATCH] increase the base network buffer size from 8192 -> 16384, this is doubly as large, some transfer frames to sysview can reach the 8k boundary and become truncated, this increase in buffer size should allievate that issue; --- src/common/network/RawFrameQueue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/network/RawFrameQueue.h b/src/common/network/RawFrameQueue.h index 35d3e861..49106b26 100644 --- a/src/common/network/RawFrameQueue.h +++ b/src/common/network/RawFrameQueue.h @@ -28,7 +28,7 @@ namespace network // Constants // --------------------------------------------------------------------------- - const uint32_t DATA_PACKET_LENGTH = 8192U; + const uint32_t DATA_PACKET_LENGTH = 16384U; const uint32_t OVERSIZED_PACKET_WARN = 1536U; const uint8_t MAX_FAILED_READ_CNT_LOGGING = 5U;