Skip to content

Commit 32563ee

Browse files
committed
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.
1 parent 0c657a1 commit 32563ee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/posix/wh_posix_cfg.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
* =========================================== */
2525

2626
/* Request and Response Buffer Sizes */
27-
#define WH_POSIX_REQ_SIZE 1024
28-
#define WH_POSIX_RESP_SIZE 1024
27+
#define WH_POSIX_REQ_SIZE 2048
28+
#define WH_POSIX_RESP_SIZE 2048
2929
#define WH_POSIX_DMA_SIZE 8000
3030

3131
/* Data Buffer Sizes */

0 commit comments

Comments
 (0)