Skip to content

Commit 9a655da

Browse files
committed
145k for shared memory
1 parent d6d6b8b commit 9a655da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/shared_memory/src/shared_memory.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <stdio.h>
44

55
// Total shared memory size - can be tuned based on needs
6-
#define TOTAL_MEMORY_SIZE (150 * 1024) // 256KB total shared memory
6+
#define TOTAL_MEMORY_SIZE (145 * 1024) // 256KB total shared memory
77

88
// Aligned memory pool
99
static uint8_t memory_pool_[TOTAL_MEMORY_SIZE] __attribute__((aligned(32)));

0 commit comments

Comments
 (0)