zephyr/Kconfig: Increase default GC heap size to 48k.

So that more tests can run successfully, and so users by default have more
heap for applications.  Thin minimal configuration still has a 16k GC heap.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George
2024-09-03 12:54:14 +10:00
parent 935fcd1329
commit 0afec3974c
2 changed files with 3 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ config MICROPY_CONFIGFILE
config MICROPY_HEAP_SIZE
int "Heap size"
default 16384
default 49152
config MICROPY_VFS_FAT
bool "FatFS file system"

View File

@@ -11,3 +11,5 @@ CONFIG_CONSOLE_PUTCHAR_BUFSIZE=32
# TODO: Disable once https://github.com/zephyrproject-rtos/zephyr/pull/13731 is merged
#CONFIG_CONSOLE=n
#CONFIG_UART_CONSOLE=n
CONFIG_MICROPY_HEAP_SIZE=16384