mirror of
https://github.com/espressif/esp-idf.git
synced 2026-08-11 17:52:00 +03:00
feat(esp_system): add CPU lockup debug support for esp32h4 and esp32s31
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2018-2025 Espressif Systems (Shanghai) CO LTD
|
||||
* SPDX-FileCopyrightText: 2018-2026 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
@@ -7,6 +7,7 @@
|
||||
|
||||
#include "esp_err.h"
|
||||
#include "esp_image_format.h"
|
||||
#include "soc/reset_reasons.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@@ -37,6 +38,10 @@ extern esp_image_header_t bootloader_image_hdr;
|
||||
esp_err_t bootloader_read_bootloader_header(void);
|
||||
esp_err_t bootloader_check_bootloader_validity(void);
|
||||
void bootloader_clear_bss_section(void);
|
||||
bool bootloader_check_if_wdt_reset(int cpu, soc_reset_reason_t reset_reason);
|
||||
void bootloader_dump_wdt_reset_info(int cpu);
|
||||
void bootloader_enable_cpu_reset_info(void);
|
||||
void bootloader_check_reset(void);
|
||||
void bootloader_config_wdt(void);
|
||||
void bootloader_enable_random(void);
|
||||
void bootloader_print_banner(void);
|
||||
|
||||
Reference in New Issue
Block a user