-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(wdt): changed register dump on non panic task WDT to be more desc…
…riptive Closes #14400
- Loading branch information
1 parent
ae71b59
commit 6e51c05
Showing
6 changed files
with
66 additions
and
5 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
components/esp_hw_support/include/esp_private/esp_cpu_internal.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
|
||
#pragma once | ||
|
||
#include "sdkconfig.h" | ||
|
||
#if CONFIG_IDF_TARGET_ARCH_XTENSA | ||
#include "xtensa_context.h" | ||
#elif CONFIG_IDF_TARGET_ARCH_RISCV | ||
#include "riscv/rvruntime-frames.h" | ||
#endif | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#if CONFIG_IDF_TARGET_ARCH_XTENSA | ||
typedef XtExcFrame esp_cpu_frame_t; | ||
#elif CONFIG_IDF_TARGET_ARCH_RISCV | ||
typedef RvExcFrame esp_cpu_frame_t; | ||
#endif | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters