Merge branch 'contrib/github_pr_11508' into 'master'

[Heap Trace Standalone] increase Kconfig max stack depth (GitHub PR)

Closes IDFGH-10245

See merge request espressif/esp-idf!23982
This commit is contained in:
Marius Vikhammer
2023-06-02 10:48:52 +08:00
2 changed files with 24 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ menu "Heap memory debugging"
int "Heap tracing stack depth"
range 0 0 if IDF_TARGET_ARCH_RISCV # Disabled for RISC-V due to `__builtin_return_address` limitation
default 0 if IDF_TARGET_ARCH_RISCV
range 0 10
range 0 32
default 2
depends on HEAP_TRACING
help

View File

@@ -70,9 +70,31 @@ static HEAP_IRAM_ATTR __attribute__((noinline)) void get_call_stack(void **calle
TEST_STACK(7);
TEST_STACK(8);
TEST_STACK(9);
TEST_STACK(10);
TEST_STACK(11);
TEST_STACK(12);
TEST_STACK(13);
TEST_STACK(14);
TEST_STACK(15);
TEST_STACK(16);
TEST_STACK(17);
TEST_STACK(18);
TEST_STACK(19);
TEST_STACK(20);
TEST_STACK(21);
TEST_STACK(22);
TEST_STACK(23);
TEST_STACK(24);
TEST_STACK(25);
TEST_STACK(26);
TEST_STACK(27);
TEST_STACK(28);
TEST_STACK(29);
TEST_STACK(30);
TEST_STACK(31);
}
ESP_STATIC_ASSERT(STACK_DEPTH >= 0 && STACK_DEPTH <= 10, "CONFIG_HEAP_TRACING_STACK_DEPTH must be in range 0-10");
ESP_STATIC_ASSERT(STACK_DEPTH >= 0 && STACK_DEPTH <= 32, "CONFIG_HEAP_TRACING_STACK_DEPTH must be in range 0-10");
typedef enum {