targets: change default stack size for esp32c3 and esp32s3 to 8196.

This changes the default stack size for the esp32-c3 and esp32-s3
to 8kb. Since they have more onboard memory and a larger stack size is
needed for any networking etc this default seems like a more sensible
one, in similar way to the rp2040/rp2350 defaults.

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram
2026-03-21 10:29:22 +01:00
parent a71f776203
commit 3a00f00f62
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -5,6 +5,7 @@
"serial": "usb",
"rtlib": "compiler-rt",
"libc": "picolibc",
"default-stack-size": 8192,
"cflags": [
"-march=rv32imc"
],
+1 -1
View File
@@ -6,7 +6,7 @@
"scheduler": "tasks",
"serial": "usb",
"linker": "ld.lld",
"default-stack-size": 2048,
"default-stack-size": 8192,
"rtlib": "compiler-rt",
"libc": "picolibc",
"linkerscript": "targets/esp32s3.ld",