Skip to content

Commit 156a33f

Browse files
committed
freeRTOS: shrink heap by half
A 128K reservation on a device with 256K of RAM is a bit demanding. Shrink to fix a link error in a DebugRel build.
1 parent 3bd5869 commit 156a33f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FreeRTOSConfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
/* Memory allocation related definitions. */
7272
#define configSUPPORT_STATIC_ALLOCATION 0
7373
#define configSUPPORT_DYNAMIC_ALLOCATION 1
74-
#define configTOTAL_HEAP_SIZE (128*1024)
74+
#define configTOTAL_HEAP_SIZE (64*1024)
7575
#define configAPPLICATION_ALLOCATED_HEAP 0
7676

7777
/* Hook function related definitions. */

0 commit comments

Comments
 (0)