Home
last modified time | relevance | path

Searched refs:hint (Results 1 – 9 of 9) sorted by relevance

/hal_espressif-latest/components/esp_system/port/soc/esp32/
Dreset_reason.c61 esp_reset_reason_t hint = esp_reset_reason_get_hint(); in esp_reset_reason_init() local
62 s_reset_reason = get_reset_reason(esp_rom_get_reset_reason(PRO_CPU_NUM), hint); in esp_reset_reason_init()
63 if (hint != ESP_RST_UNKNOWN) { in esp_reset_reason_init()
90 void IRAM_ATTR esp_reset_reason_set_hint(esp_reset_reason_t hint) in esp_reset_reason_set_hint() argument
92 assert((hint & (~RST_REASON_MASK)) == 0); in esp_reset_reason_set_hint()
93 uint32_t val = hint | (hint << RST_REASON_SHIFT) | RST_REASON_BIT; in esp_reset_reason_set_hint()
/hal_espressif-latest/components/esp_system/port/soc/esp32c2/
Dreset_reason.c56 esp_reset_reason_t hint = esp_reset_reason_get_hint(); in esp_reset_reason_init() local
57 s_reset_reason = get_reset_reason(esp_rom_get_reset_reason(PRO_CPU_NUM), hint); in esp_reset_reason_init()
58 if (hint != ESP_RST_UNKNOWN) { in esp_reset_reason_init()
79 void IRAM_ATTR esp_reset_reason_set_hint(esp_reset_reason_t hint) in esp_reset_reason_set_hint() argument
81 assert((hint & (~RST_REASON_MASK)) == 0); in esp_reset_reason_set_hint()
82 uint32_t val = hint | (hint << RST_REASON_SHIFT) | RST_REASON_BIT; in esp_reset_reason_set_hint()
/hal_espressif-latest/components/esp_system/port/soc/esp32c3/
Dreset_reason.c63 esp_reset_reason_t hint = esp_reset_reason_get_hint(); in esp_reset_reason_init() local
64 s_reset_reason = get_reset_reason(esp_rom_get_reset_reason(PRO_CPU_NUM), hint); in esp_reset_reason_init()
65 if (hint != ESP_RST_UNKNOWN) { in esp_reset_reason_init()
92 void IRAM_ATTR esp_reset_reason_set_hint(esp_reset_reason_t hint) in esp_reset_reason_set_hint() argument
94 assert((hint & (~RST_REASON_MASK)) == 0); in esp_reset_reason_set_hint()
95 uint32_t val = hint | (hint << RST_REASON_SHIFT) | RST_REASON_BIT; in esp_reset_reason_set_hint()
/hal_espressif-latest/components/esp_system/port/soc/esp32s2/
Dreset_reason.c60 esp_reset_reason_t hint = esp_reset_reason_get_hint(); in esp_reset_reason_init() local
61 s_reset_reason = get_reset_reason(esp_rom_get_reset_reason(PRO_CPU_NUM), hint); in esp_reset_reason_init()
62 if (hint != ESP_RST_UNKNOWN) { in esp_reset_reason_init()
89 void IRAM_ATTR esp_reset_reason_set_hint(esp_reset_reason_t hint) in esp_reset_reason_set_hint() argument
91 assert((hint & (~RST_REASON_MASK)) == 0); in esp_reset_reason_set_hint()
92 uint32_t val = hint | (hint << RST_REASON_SHIFT) | RST_REASON_BIT; in esp_reset_reason_set_hint()
/hal_espressif-latest/components/esp_system/port/soc/esp32s3/
Dreset_reason.c60 esp_reset_reason_t hint = esp_reset_reason_get_hint(); in esp_reset_reason_init() local
61 s_reset_reason = get_reset_reason(esp_rom_get_reset_reason(PRO_CPU_NUM), hint); in esp_reset_reason_init()
62 if (hint != ESP_RST_UNKNOWN) { in esp_reset_reason_init()
87 void IRAM_ATTR esp_reset_reason_set_hint(esp_reset_reason_t hint) in esp_reset_reason_set_hint() argument
89 assert((hint & (~RST_REASON_MASK)) == 0); in esp_reset_reason_set_hint()
90 uint32_t val = hint | (hint << RST_REASON_SHIFT) | RST_REASON_BIT; in esp_reset_reason_set_hint()
/hal_espressif-latest/components/esp_system/port/soc/esp32c6/
Dreset_reason.c73 esp_reset_reason_t hint = esp_reset_reason_get_hint(); in esp_reset_reason_init() local
74 s_reset_reason = get_reset_reason(esp_rom_get_reset_reason(PRO_CPU_NUM), hint); in esp_reset_reason_init()
75 if (hint != ESP_RST_UNKNOWN) { in esp_reset_reason_init()
102 void IRAM_ATTR esp_reset_reason_set_hint(esp_reset_reason_t hint) in esp_reset_reason_set_hint() argument
104 assert((hint & (~RST_REASON_MASK)) == 0); in esp_reset_reason_set_hint()
105 uint32_t val = hint | (hint << RST_REASON_SHIFT) | RST_REASON_BIT; in esp_reset_reason_set_hint()
/hal_espressif-latest/components/esp_system/port/soc/esp32h2/
Dreset_reason.c73 esp_reset_reason_t hint = esp_reset_reason_get_hint(); in esp_reset_reason_init() local
74 s_reset_reason = get_reset_reason(esp_rom_get_reset_reason(PRO_CPU_NUM), hint); in esp_reset_reason_init()
75 if (hint != ESP_RST_UNKNOWN) { in esp_reset_reason_init()
102 void IRAM_ATTR esp_reset_reason_set_hint(esp_reset_reason_t hint) in esp_reset_reason_set_hint() argument
104 assert((hint & (~RST_REASON_MASK)) == 0); in esp_reset_reason_set_hint()
105 uint32_t val = hint | (hint << RST_REASON_SHIFT) | RST_REASON_BIT; in esp_reset_reason_set_hint()
/hal_espressif-latest/components/esp_system/include/esp_private/
Dsystem_internal.h41 void esp_reset_reason_set_hint(esp_reset_reason_t hint);
/hal_espressif-latest/components/esp_system/
Dpanic.c474 void IRAM_ATTR __attribute__((weak)) esp_reset_reason_set_hint(esp_reset_reason_t hint) in esp_reset_reason_set_hint() argument