1 /* 2 * SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 #pragma once 7 8 typedef enum { 9 PANIC_RSN_NONE = 0, 10 PANIC_RSN_INTWDT_CPU0, 11 #if SOC_CPU_NUM > 1 12 PANIC_RSN_INTWDT_CPU1, 13 #endif 14 PANIC_RSN_CACHEERR, 15 #if CONFIG_ESP_SYSTEM_MEMPROT_FEATURE 16 PANIC_RSN_MEMPROT, 17 #endif 18 PANIC_RSN_COUNT 19 } panic_reasons_t; 20