Merge branch 'feature/twdt_prints_backtrace_v4.1' into 'release/v4.1'

Add Task Watchdog backtrace printing (v4.1)

See merge request espressif/esp-idf!12617
This commit is contained in:
Zim Kalinowski
2021-08-10 02:42:43 +00:00
4 changed files with 43 additions and 1 deletions

View File

@@ -51,4 +51,14 @@ void esp_crosscore_int_send_yield(int core_id);
*/
void esp_crosscore_int_send_freq_switch(int core_id);
/**
* Send an interrupt to a CPU indicating it should print its current backtrace
*
* This is use internally by the Task Watchdog to dump the backtrace of the
* opposite core and should not be called from application code.
*
* @param core_id Core that should print its backtrace
*/
void esp_crosscore_int_send_print_backtrace(int core_id);
#endif