mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-09 04:25:32 +00:00
[Heap Trace Standalone] increase Kconfig max stack size
This commit is contained in:

committed by
Marius Vikhammer

parent
3c8a782113
commit
23cba5fe00
@@ -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 {
|
||||
|
Reference in New Issue
Block a user