mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'extend_coredump_tests' into 'master'
Coredump PSRAM related fix and more tests Closes IDF-9063 See merge request espressif/esp-idf!29304
This commit is contained in:
commit
1fc0be230f
@ -18,6 +18,7 @@
|
||||
#ifdef CONFIG_ESP_COREDUMP_DATA_FORMAT_ELF
|
||||
#include <sys/param.h> // for the MIN macro
|
||||
#include "esp_app_desc.h"
|
||||
#include "esp_memory_utils.h"
|
||||
#endif
|
||||
|
||||
#define ELF_CLASS ELFCLASS32
|
||||
@ -300,22 +301,6 @@ static int elf_add_regs(core_dump_elf_t *self, core_dump_task_header_t *task)
|
||||
len);
|
||||
}
|
||||
|
||||
static int elf_add_stack(core_dump_elf_t *self, core_dump_task_header_t *task)
|
||||
{
|
||||
uint32_t stack_vaddr, stack_len = 0, stack_paddr = 0;
|
||||
|
||||
ELF_CHECK_ERR((task), ELF_PROC_ERR_OTHER, "Invalid task pointer.");
|
||||
|
||||
stack_len = esp_core_dump_get_stack(task, &stack_vaddr, &stack_paddr);
|
||||
ESP_COREDUMP_LOG_PROCESS("Add stack for task 0x%x: addr 0x%x, sz %u",
|
||||
task->tcb_addr, stack_vaddr, stack_len);
|
||||
int ret = elf_add_segment(self, PT_LOAD,
|
||||
(uint32_t)stack_vaddr,
|
||||
(void*)stack_paddr,
|
||||
(uint32_t) stack_len);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int elf_add_tcb(core_dump_elf_t *self, core_dump_task_header_t *task)
|
||||
{
|
||||
ELF_CHECK_ERR((task), ELF_PROC_ERR_OTHER, "Invalid task pointer.");
|
||||
@ -348,17 +333,39 @@ static int elf_process_task_tcb(core_dump_elf_t *self, core_dump_task_header_t *
|
||||
|
||||
static int elf_process_task_stack(core_dump_elf_t *self, core_dump_task_header_t *task)
|
||||
{
|
||||
int ret = ELF_PROC_ERR_OTHER;
|
||||
int ret = 0;
|
||||
uint32_t stack_vaddr;
|
||||
uint32_t stack_len = 0;
|
||||
uint32_t stack_paddr = 0;
|
||||
|
||||
ELF_CHECK_ERR((task), ELF_PROC_ERR_OTHER, "Invalid input data.");
|
||||
|
||||
ret = elf_add_stack(self, task);
|
||||
if (ret <= 0) {
|
||||
ESP_COREDUMP_LOGE("Task (TCB:%x), (Stack:%x), stack processing failure = %d.",
|
||||
task->tcb_addr,
|
||||
task->stack_start,
|
||||
ret);
|
||||
stack_len = esp_core_dump_get_stack(task, &stack_vaddr, &stack_paddr);
|
||||
ESP_COREDUMP_LOG_PROCESS("Add stack for task 0x%x: addr 0x%x, sz %u",
|
||||
task->tcb_addr, stack_vaddr, stack_len);
|
||||
|
||||
#if CONFIG_ESP_COREDUMP_CAPTURE_DRAM
|
||||
/*
|
||||
When saving all data sections (enabled by `CONFIG_ESP_COREDUMP_CAPTURE_DRAM`),
|
||||
the task stack located in DRAM will be saved in `esp_core_dump_store_section()`.
|
||||
Therefore, we filter them out here.
|
||||
PSRAM data do not fall into any ELF section, so we always save such stacks here.
|
||||
*/
|
||||
if (esp_ptr_external_ram((void *)stack_vaddr))
|
||||
#endif
|
||||
{
|
||||
ret = elf_add_segment(self, PT_LOAD,
|
||||
(uint32_t)stack_vaddr,
|
||||
(void*)stack_paddr,
|
||||
(uint32_t) stack_len);
|
||||
if (ret <= 0) {
|
||||
ESP_COREDUMP_LOGE("Task (TCB:%x), (Stack:%x), stack processing failure = %d.",
|
||||
task->tcb_addr,
|
||||
task->stack_start,
|
||||
ret);
|
||||
}
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
@ -453,21 +460,15 @@ static int elf_save_task(core_dump_elf_t *self, core_dump_task_header_t *task)
|
||||
return elf_len;
|
||||
}
|
||||
|
||||
static int elf_write_tasks_data(core_dump_elf_t *self)
|
||||
static int elf_process_task_data(core_dump_elf_t *self)
|
||||
{
|
||||
int elf_len = 0;
|
||||
core_dump_task_header_t task_hdr = { 0 };
|
||||
core_dump_mem_seg_header_t interrupted_stack = { 0 };
|
||||
TaskIterator_t task_iter;
|
||||
int ret = ELF_PROC_ERR_OTHER;
|
||||
uint16_t tasks_num = 0;
|
||||
uint16_t bad_tasks_num = 0;
|
||||
|
||||
ESP_COREDUMP_LOG_PROCESS("================ Processing task registers ================");
|
||||
ret = elf_process_tasks_regs(self);
|
||||
ELF_CHECK_ERR((ret > 0), ret, "Tasks regs addition failed, return (%d).", ret);
|
||||
elf_len += ret;
|
||||
|
||||
ESP_COREDUMP_LOG_PROCESS("================ Processing task data ================");
|
||||
// processes all task's stack data and writes segment data into partition
|
||||
// if flash configuration is set
|
||||
@ -479,17 +480,16 @@ static int elf_write_tasks_data(core_dump_elf_t *self)
|
||||
bad_tasks_num++;
|
||||
continue;
|
||||
}
|
||||
|
||||
#if CONFIG_ESP_COREDUMP_CAPTURE_DRAM
|
||||
/* Only crashed task data will be saved here. The other task's data will be automatically saved within the sections */
|
||||
if (esp_core_dump_get_current_task_handle() == task_iter.pxTaskHandle)
|
||||
#endif
|
||||
{
|
||||
ret = elf_save_task(self, &task_hdr);
|
||||
ELF_CHECK_ERR((ret > 0), ret,
|
||||
"Task %x, TCB write failed, return (%d).", task_iter.pxTaskHandle, ret);
|
||||
elf_len += ret;
|
||||
}
|
||||
int ret = elf_save_task(self, &task_hdr);
|
||||
ELF_CHECK_ERR((ret > 0), ret,
|
||||
"Task %x, TCB write failed, return (%d).", task_iter.pxTaskHandle, ret);
|
||||
elf_len += ret;
|
||||
/* interrupt stacks:
|
||||
- 'port_IntStack' is in the data section for xtensa
|
||||
- 'xIsrStack' is in the bss section for risc-v
|
||||
When DRAM capture is enabled, interrupt stack saving can be done during the full section store
|
||||
*/
|
||||
#if !CONFIG_ESP_COREDUMP_CAPTURE_DRAM
|
||||
if (interrupted_stack.size > 0) {
|
||||
ESP_COREDUMP_LOG_PROCESS("Add interrupted task stack %lu bytes @ %x",
|
||||
interrupted_stack.size, interrupted_stack.start);
|
||||
@ -500,11 +500,28 @@ static int elf_write_tasks_data(core_dump_elf_t *self)
|
||||
ELF_CHECK_ERR((ret > 0), ret, "Interrupted task stack write failed, return (%d).", ret);
|
||||
elf_len += ret;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
ESP_COREDUMP_LOG_PROCESS("Found %d bad task out of %d", bad_tasks_num, tasks_num);
|
||||
|
||||
return elf_len;
|
||||
}
|
||||
|
||||
static int elf_write_tasks_data(core_dump_elf_t *self)
|
||||
{
|
||||
ESP_COREDUMP_LOG_PROCESS("================ Processing task registers ================");
|
||||
int ret = elf_process_tasks_regs(self);
|
||||
ELF_CHECK_ERR((ret > 0), ret, "Tasks regs addition failed, return (%d).", ret);
|
||||
int elf_len = ret;
|
||||
|
||||
ret = elf_process_task_data(self);
|
||||
if (ret <= 0) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
return elf_len + ret;
|
||||
}
|
||||
|
||||
#if CONFIG_ESP_COREDUMP_CAPTURE_DRAM
|
||||
|
||||
/* Coredump stack will also be used by the checksum functions while saving sections.
|
||||
|
@ -17,7 +17,7 @@ if(CONFIG_TEST_MEMPROT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(NOT CONFIG_TEST_MEMPROT AND NOT CONFIG_ESP_COREDUMP_CAPTURE_DRAM)
|
||||
if(NOT CONFIG_TEST_MEMPROT AND NOT CONFIG_ESP_COREDUMP_CAPTURE_DRAM AND NOT CONFIG_SPIRAM)
|
||||
# Enable UBSAN checks
|
||||
#
|
||||
# shift-base sanitizer is disabled due to the following pattern found in register header files:
|
||||
|
@ -13,8 +13,8 @@ endif()
|
||||
|
||||
idf_component_register(SRCS "${srcs}"
|
||||
INCLUDE_DIRS "include"
|
||||
REQUIRES spi_flash esp_psram esp_system esp_partition espcoredump
|
||||
PRIV_REQUIRES esp_gdbstub)
|
||||
REQUIRES spi_flash esp_psram esp_system esp_partition
|
||||
PRIV_REQUIRES esp_gdbstub espcoredump)
|
||||
|
||||
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-unused-variable"
|
||||
"-Wno-infinite-recursion"
|
||||
|
@ -32,7 +32,10 @@ void test_hw_stack_guard_cpu1(void);
|
||||
#endif // CONFIG_ESP_SYSTEM_HW_STACK_GUARD
|
||||
|
||||
#if CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH && CONFIG_SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY
|
||||
void test_panic_extram_stack(void);
|
||||
void test_panic_extram_stack_heap(void);
|
||||
#if CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
|
||||
void test_panic_extram_stack_bss(void);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if !CONFIG_FREERTOS_UNICORE
|
||||
@ -67,6 +70,8 @@ void test_illegal_access(void);
|
||||
|
||||
void test_capture_dram(void);
|
||||
|
||||
void test_tcb_corrupted(void);
|
||||
|
||||
#if CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH && CONFIG_ESP_COREDUMP_DATA_FORMAT_ELF
|
||||
void test_setup_coredump_summary(void);
|
||||
void test_coredump_summary(void);
|
||||
|
@ -96,7 +96,10 @@ void app_main(void)
|
||||
#endif // CONFIG_FREERTOS_UNICORE
|
||||
#endif // CONFIG_ESP_SYSTEM_HW_STACK_GUARD
|
||||
#if CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH && CONFIG_SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY
|
||||
HANDLE_TEST(test_name, test_panic_extram_stack);
|
||||
HANDLE_TEST(test_name, test_panic_extram_stack_heap);
|
||||
#if CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
|
||||
HANDLE_TEST(test_name, test_panic_extram_stack_bss);
|
||||
#endif
|
||||
#endif
|
||||
#if CONFIG_ESP_COREDUMP_CAPTURE_DRAM
|
||||
HANDLE_TEST(test_name, test_capture_dram);
|
||||
@ -116,6 +119,7 @@ void app_main(void)
|
||||
HANDLE_TEST(test_name, test_assert_cache_disabled);
|
||||
HANDLE_TEST(test_name, test_assert_cache_write_back_error_can_print_backtrace);
|
||||
HANDLE_TEST(test_name, test_assert_cache_write_back_error_can_print_backtrace2);
|
||||
HANDLE_TEST(test_name, test_tcb_corrupted);
|
||||
#if CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH && CONFIG_ESP_COREDUMP_DATA_FORMAT_ELF
|
||||
HANDLE_TEST(test_name, test_setup_coredump_summary);
|
||||
HANDLE_TEST(test_name, test_coredump_summary);
|
||||
|
@ -104,7 +104,7 @@ static void stack_in_extram(void* arg) {
|
||||
abort();
|
||||
}
|
||||
|
||||
void test_panic_extram_stack(void) {
|
||||
void test_panic_extram_stack_heap(void) {
|
||||
/* Start by initializing a Task which has a stack in external RAM */
|
||||
StaticTask_t handle;
|
||||
const uint32_t stack_size = 8192;
|
||||
@ -119,8 +119,17 @@ void test_panic_extram_stack(void) {
|
||||
|
||||
vTaskDelay(1000);
|
||||
}
|
||||
#if CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
|
||||
static EXT_RAM_BSS_ATTR StackType_t stack[8192];
|
||||
void test_panic_extram_stack_bss(void)
|
||||
{
|
||||
StaticTask_t handle;
|
||||
|
||||
xTaskCreateStatic(stack_in_extram, "Task_stack_extram", sizeof(stack), NULL, 4, stack, &handle);
|
||||
|
||||
vTaskDelay(1000);
|
||||
}
|
||||
#endif
|
||||
#endif // ESP_COREDUMP_ENABLE_TO_FLASH && SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY
|
||||
|
||||
|
||||
@ -301,6 +310,15 @@ void test_coredump_summary(void)
|
||||
}
|
||||
#endif
|
||||
|
||||
void test_tcb_corrupted(void)
|
||||
{
|
||||
uint32_t *tcb_ptr = (uint32_t *)xTaskGetIdleTaskHandleForCore(0);
|
||||
for (size_t i = 0; i < sizeof(StaticTask_t) / sizeof(uint32_t); ++i) {
|
||||
tcb_ptr[i] = 0xDEADBEE0;
|
||||
}
|
||||
vTaskDelay(2);
|
||||
}
|
||||
|
||||
/* NOTE: The following test verifies the behaviour for the
|
||||
* Xtensa-specific MPU instructions (Refer WDTLB, DSYNC, WDTIB, ISYNC)
|
||||
* used for memory protection.
|
||||
|
@ -1,8 +1,11 @@
|
||||
# SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
import re
|
||||
from typing import Any
|
||||
from typing import List
|
||||
from typing import Optional
|
||||
from typing import Pattern
|
||||
from typing import Sequence
|
||||
from typing import Union
|
||||
|
||||
import pexpect
|
||||
@ -66,11 +69,13 @@ CONFIGS_DUAL_CORE = [
|
||||
# This list is used to check if the target is a dual-core one.
|
||||
TARGETS_DUAL_CORE_NAMES = [x.mark.name for x in TARGETS_DUAL_CORE]
|
||||
|
||||
# The tests which panic on external stack require PSRAM capable runners
|
||||
CONFIGS_EXTRAM_STACK = [
|
||||
pytest.param('coredump_extram_stack', marks=[pytest.mark.esp32, pytest.mark.psram]),
|
||||
pytest.param('coredump_extram_stack', marks=[pytest.mark.esp32s2, pytest.mark.generic]),
|
||||
pytest.param('coredump_extram_stack', marks=[pytest.mark.esp32s3, pytest.mark.quad_psram]),
|
||||
pytest.param('coredump_flash_extram_stack_heap_esp32', marks=[pytest.mark.esp32, pytest.mark.psram]),
|
||||
pytest.param('coredump_flash_extram_stack_heap_esp32s2', marks=[pytest.mark.esp32s2, pytest.mark.generic]),
|
||||
pytest.param('coredump_flash_extram_stack_heap_esp32s3', marks=[pytest.mark.esp32s3, pytest.mark.quad_psram]),
|
||||
pytest.param('coredump_flash_extram_stack_bss_esp32', marks=[pytest.mark.esp32, pytest.mark.psram]),
|
||||
pytest.param('coredump_flash_extram_stack_bss_esp32s2', marks=[pytest.mark.esp32s2, pytest.mark.generic]),
|
||||
pytest.param('coredump_flash_extram_stack_bss_esp32s3', marks=[pytest.mark.esp32s3, pytest.mark.quad_psram]),
|
||||
]
|
||||
|
||||
CONFIGS_HW_STACK_GUARD = [
|
||||
@ -107,7 +112,7 @@ def get_default_backtrace(config: str) -> List[str]:
|
||||
|
||||
|
||||
def common_test(dut: PanicTestDut, config: str, expected_backtrace: Optional[List[str]] = None, check_cpu_reset: Optional[bool] = True,
|
||||
expected_coredump: Optional[List[Union[str, re.Pattern]]] = None) -> None:
|
||||
expected_coredump: Optional[Sequence[Union[str, Pattern[Any]]]] = None) -> None:
|
||||
if 'gdbstub' in config:
|
||||
dut.expect_exact('Entering gdb stub now.')
|
||||
dut.start_gdb_for_gdbstub()
|
||||
@ -204,8 +209,11 @@ def test_task_wdt_cpu1(dut: PanicTestDut, config: str, test_func_name: str) -> N
|
||||
|
||||
|
||||
@pytest.mark.parametrize('config', CONFIGS_EXTRAM_STACK, indirect=True)
|
||||
def test_panic_extram_stack(dut: PanicTestDut, config: str, test_func_name: str) -> None:
|
||||
dut.run_test_func(test_func_name)
|
||||
def test_panic_extram_stack(dut: PanicTestDut, config: str) -> None:
|
||||
if 'heap' in config:
|
||||
dut.run_test_func('test_panic_extram_stack_heap')
|
||||
else:
|
||||
dut.run_test_func('test_panic_extram_stack_bss')
|
||||
dut.expect_none('Allocated stack is not in external RAM')
|
||||
dut.expect_none('Guru Meditation')
|
||||
dut.expect_backtrace()
|
||||
@ -218,7 +226,22 @@ def test_panic_extram_stack(dut: PanicTestDut, config: str, test_func_name: str)
|
||||
# The caller must be accessible after restoring the stack
|
||||
dut.expect_exact('Core dump has been saved to flash.')
|
||||
|
||||
common_test(dut, config)
|
||||
if dut.target == 'esp32':
|
||||
# ESP32 External data memory range [0x3f800000-0x3fc00000)
|
||||
coredump_pattern = re.compile('.coredump.tasks.data (0x3[fF][8-9a-bA-B][0-9a-fA-F]{5}) (0x[a-fA-F0-9]+) RW')
|
||||
elif dut.target == 'esp32s2':
|
||||
# ESP32-S2 External data memory range [0x3f500000-0x3ff80000)
|
||||
coredump_pattern = re.compile('.coredump.tasks.data (0x3[fF][5-9a-fA-F][0-7][0-9a-fA-F]{4}) (0x[a-fA-F0-9]+) RW')
|
||||
else:
|
||||
# ESP32-S3 External data memory range [0x3c000000-0x3e000000)
|
||||
coredump_pattern = re.compile('.coredump.tasks.data (0x3[c-dC-D][0-9a-fA-F]{6}) (0x[a-fA-F0-9]+) RW')
|
||||
|
||||
common_test(
|
||||
dut,
|
||||
config,
|
||||
expected_backtrace=None,
|
||||
expected_coredump=[coredump_pattern]
|
||||
)
|
||||
|
||||
|
||||
@pytest.mark.parametrize('config', CONFIGS, indirect=True)
|
||||
@ -1019,3 +1042,38 @@ def test_coredump_summary(dut: PanicTestDut) -> None:
|
||||
@pytest.mark.parametrize('config', CONFIG_COREDUMP_SUMMARY_FLASH_ENCRYPTED, indirect=True)
|
||||
def test_coredump_summary_flash_encrypted(dut: PanicTestDut, config: str) -> None:
|
||||
_test_coredump_summary(dut, True, config == 'coredump_flash_encrypted')
|
||||
|
||||
|
||||
@pytest.mark.parametrize('config', [pytest.param('coredump_flash_elf_sha', marks=TARGETS_ALL)], indirect=True)
|
||||
@pytest.mark.generic
|
||||
def test_tcb_corrupted(dut: PanicTestDut, target: str, config: str, test_func_name: str) -> None:
|
||||
dut.run_test_func(test_func_name)
|
||||
if dut.is_xtensa:
|
||||
dut.expect_gme('LoadProhibited')
|
||||
dut.expect_reg_dump(0)
|
||||
dut.expect_corrupted_backtrace()
|
||||
else:
|
||||
dut.expect_gme('Load access fault')
|
||||
dut.expect_reg_dump(0)
|
||||
dut.expect_stack_dump()
|
||||
|
||||
dut.expect_elf_sha256()
|
||||
dut.expect_none('Guru Meditation')
|
||||
|
||||
# TCB NAME
|
||||
# ---------- ----------------
|
||||
if dut.is_multi_core:
|
||||
regex_patterns = [rb'[0-9xa-fA-F] main',
|
||||
rb'[0-9xa-fA-F] ipc0',
|
||||
rb'[0-9xa-fA-F] ipc1']
|
||||
else:
|
||||
regex_patterns = [rb'[0-9xa-fA-F] main']
|
||||
|
||||
coredump_pattern = [re.compile(pattern.decode('utf-8')) for pattern in regex_patterns]
|
||||
|
||||
common_test(
|
||||
dut,
|
||||
config,
|
||||
expected_backtrace=None,
|
||||
expected_coredump=coredump_pattern
|
||||
)
|
||||
|
@ -0,0 +1,13 @@
|
||||
CONFIG_IDF_TARGET="esp32"
|
||||
CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH=y
|
||||
CONFIG_ESP_COREDUMP_DATA_FORMAT_ELF=y
|
||||
CONFIG_ESP_COREDUMP_CHECKSUM_SHA256=y
|
||||
# We need to have the coredump info log
|
||||
CONFIG_LOG_DEFAULT_LEVEL_INFO=y
|
||||
CONFIG_SPIRAM=y
|
||||
CONFIG_SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY=y
|
||||
CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY=y
|
||||
CONFIG_ESP_COREDUMP_USE_STACK_SIZE=y
|
||||
CONFIG_ESP_COREDUMP_CAPTURE_DRAM=y
|
||||
CONFIG_PARTITION_TABLE_CUSTOM=y
|
||||
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions_capture_dram.csv"
|
@ -0,0 +1,13 @@
|
||||
CONFIG_IDF_TARGET="esp32s2"
|
||||
CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH=y
|
||||
CONFIG_ESP_COREDUMP_DATA_FORMAT_ELF=y
|
||||
CONFIG_ESP_COREDUMP_CHECKSUM_SHA256=y
|
||||
# We need to have the coredump info log
|
||||
CONFIG_LOG_DEFAULT_LEVEL_INFO=y
|
||||
CONFIG_SPIRAM=y
|
||||
CONFIG_SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY=y
|
||||
CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY=y
|
||||
CONFIG_ESP_COREDUMP_USE_STACK_SIZE=y
|
||||
CONFIG_ESP_COREDUMP_CAPTURE_DRAM=y
|
||||
CONFIG_PARTITION_TABLE_CUSTOM=y
|
||||
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions_capture_dram.csv"
|
@ -0,0 +1,13 @@
|
||||
CONFIG_IDF_TARGET="esp32s3"
|
||||
CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH=y
|
||||
CONFIG_ESP_COREDUMP_DATA_FORMAT_ELF=y
|
||||
CONFIG_ESP_COREDUMP_CHECKSUM_SHA256=y
|
||||
# We need to have the coredump info log
|
||||
CONFIG_LOG_DEFAULT_LEVEL_INFO=y
|
||||
CONFIG_SPIRAM=y
|
||||
CONFIG_SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY=y
|
||||
CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY=y
|
||||
CONFIG_ESP_COREDUMP_USE_STACK_SIZE=y
|
||||
CONFIG_ESP_COREDUMP_CAPTURE_DRAM=y
|
||||
CONFIG_PARTITION_TABLE_CUSTOM=y
|
||||
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions_capture_dram.csv"
|
@ -2,8 +2,6 @@ CONFIG_IDF_TARGET="esp32"
|
||||
CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH=y
|
||||
CONFIG_ESP_COREDUMP_DATA_FORMAT_ELF=y
|
||||
CONFIG_ESP_COREDUMP_CHECKSUM_SHA256=y
|
||||
# CONFIG_ESP_SYSTEM_PANIC_GDBSTUB is not set
|
||||
CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT=y
|
||||
# We need to have the coredump info log
|
||||
CONFIG_LOG_DEFAULT_LEVEL_INFO=y
|
||||
CONFIG_SPIRAM=y
|
@ -0,0 +1,9 @@
|
||||
CONFIG_IDF_TARGET="esp32s2"
|
||||
CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH=y
|
||||
CONFIG_ESP_COREDUMP_DATA_FORMAT_ELF=y
|
||||
CONFIG_ESP_COREDUMP_CHECKSUM_SHA256=y
|
||||
# We need to have the coredump info log
|
||||
CONFIG_LOG_DEFAULT_LEVEL_INFO=y
|
||||
CONFIG_SPIRAM=y
|
||||
CONFIG_SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY=y
|
||||
CONFIG_ESP_COREDUMP_USE_STACK_SIZE=y
|
@ -0,0 +1,9 @@
|
||||
CONFIG_IDF_TARGET="esp32s3"
|
||||
CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH=y
|
||||
CONFIG_ESP_COREDUMP_DATA_FORMAT_ELF=y
|
||||
CONFIG_ESP_COREDUMP_CHECKSUM_SHA256=y
|
||||
# We need to have the coredump info log
|
||||
CONFIG_LOG_DEFAULT_LEVEL_INFO=y
|
||||
CONFIG_SPIRAM=y
|
||||
CONFIG_SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY=y
|
||||
CONFIG_ESP_COREDUMP_USE_STACK_SIZE=y
|
Loading…
x
Reference in New Issue
Block a user