Skip to content

Commit a28d03a

Browse files
committed
Change heap size to 60KB for nuttx
JerryScript-DCO-1.0-Signed-off-by: SaeHie Park [email protected]
1 parent 0fda771 commit a28d03a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jerry-core/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ project (JerryCore CXX C ASM)
8080
# Platform-specific
8181
# Linux
8282
# Nuttx
83-
math(EXPR MEM_HEAP_AREA_SIZE_16K "16 * 1024")
84-
set(DEFINES_JERRY_NUTTX CONFIG_MEM_HEAP_AREA_SIZE=${MEM_HEAP_AREA_SIZE_16K})
83+
math(EXPR MEM_HEAP_AREA_SIZE_60K "60 * 1024")
84+
set(DEFINES_JERRY_NUTTX CONFIG_MEM_HEAP_AREA_SIZE=${MEM_HEAP_AREA_SIZE_60K})
8585
# MCU
8686
# stm32f3
8787
math(EXPR MEM_HEAP_AREA_SIZE_16K "16 * 1024")

0 commit comments

Comments
 (0)