Merge branch 'bugfix/panic_instrprohibited' into 'master'

esp_system: fix instrprohibited panic backtrace regression

See merge request espressif/esp-idf!13023
This commit is contained in:
Angus Gratton
2021-04-07 05:14:19 +00:00
3 changed files with 9 additions and 5 deletions

View File

@@ -41,6 +41,7 @@ typedef struct {
uint32_t pc; /* PC of the current frame */
uint32_t sp; /* SP of the current frame */
uint32_t next_pc; /* PC of the current frame's caller */
const void *exc_frame; /* Pointer to the full frame data structure, if applicable */
} esp_backtrace_frame_t;
/**