fix(soc): add missing reset reasons for the ESP32-C61

This commit is contained in:
Omar Chebib
2024-09-23 17:26:22 +08:00
parent 1635905523
commit 22436dae10
3 changed files with 10 additions and 0 deletions

View File

@@ -46,6 +46,8 @@ typedef enum {
RESET_REASON_CORE_USB_UART = 0x15, // USB UART resets the digital core (hp system)
RESET_REASON_CORE_USB_JTAG = 0x16, // USB JTAG resets the digital core (hp system)
RESET_REASON_CPU0_JTAG = 0x18, // JTAG resets the CPU 0
RESET_REASON_RTC_BROWN_OUT = 0x19, // RTC power glitch resets system
RESET_REASON_CPU_LOCKUP = 0x1A, // CPU lockup resets
} soc_reset_reason_t;