fix(coredump): implement CONFIG_ESP_COREDUMP_MAX_TASKS_NUM limitation

This commit is contained in:
Erhan Kurubas
2025-08-01 20:22:49 +03:00
parent 4105adb9f3
commit ecf99c9785
4 changed files with 63 additions and 20 deletions

View File

@@ -29,7 +29,7 @@ The ELF format contains extended features and allows more information regarding
The Binary format is kept for compatibility reasons. Binary format core dump files are smaller while provide better performance.
The :ref:`CONFIG_ESP_COREDUMP_MAX_TASKS_NUM` option configures the number of task snapshots saved by the core dump.
The :ref:`CONFIG_ESP_COREDUMP_MAX_TASKS_NUM` option configures the number of task snapshots saved by the core dump. Crashed task registers and the stack are always saved, regardless of this configuration option. Other tasks are included in order of their priority (starting with the highest-priority ready task).
Core dump data integrity checking is supported via the ``Components`` > ``Core dump`` > ``Core dump data integrity check`` option.