From 32563ee9590a209f78bc819a8373dd527f2f6e14 Mon Sep 17 00:00:00 2001 From: Alex Lanzano Date: Thu, 15 Jan 2026 17:43:26 -0500 Subject: [PATCH] Increase request and response buffers for shared memory posix example Increase the request and response shared memory buffer size to 2048 from 1024. This fixes a bad args failure when trying to send the generated rsa back to the client since the response buffer was too small. --- examples/posix/wh_posix_cfg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/posix/wh_posix_cfg.h b/examples/posix/wh_posix_cfg.h index 42659e0c0..e5a563b34 100644 --- a/examples/posix/wh_posix_cfg.h +++ b/examples/posix/wh_posix_cfg.h @@ -24,8 +24,8 @@ * =========================================== */ /* Request and Response Buffer Sizes */ -#define WH_POSIX_REQ_SIZE 1024 -#define WH_POSIX_RESP_SIZE 1024 +#define WH_POSIX_REQ_SIZE 2048 +#define WH_POSIX_RESP_SIZE 2048 #define WH_POSIX_DMA_SIZE 8000 /* Data Buffer Sizes */