Coredump: add a test to check that coredump supports stacks in SPIRAM

This commit is contained in:
Omar Chebib
2022-12-19 17:38:17 +01:00
parent 42b2169542
commit 835263e50a
5 changed files with 73 additions and 2 deletions

View File

@@ -91,7 +91,8 @@ menu "Core dump"
depends on ESP_COREDUMP_ENABLE
range 0 4096 if !ESP_COREDUMP_USE_STACK_SIZE
range 1280 4096 if ESP_COREDUMP_USE_STACK_SIZE
default 0
default 0 if !ESP_COREDUMP_USE_STACK_SIZE
default 1280 if ESP_COREDUMP_USE_STACK_SIZE
help
Size of the memory to be reserved for core dump stack. If 0 core dump process will run on
the stack of crashed task/ISR, otherwise special stack will be allocated.