esp_system: restore weak esp_reset_reason functions

This commit is contained in:
Ivan Grokhotkov 2020-05-04 06:20:47 +02:00 committed by bot
parent 17d60faf17
commit 0a389b1764

View file

@ -340,4 +340,17 @@ void __attribute__((noreturn)) panic_abort(const char *details)
*((int *) 0) = 0; // NOLINT(clang-analyzer-core.NullDereference) should be an invalid operation on targets
while(1);
}
}
/* Weak versions of reset reason hint functions.
* If these weren't provided, reset reason code would be linked into the app
* even if the app never called esp_reset_reason().
*/
void IRAM_ATTR __attribute__((weak)) esp_reset_reason_set_hint(esp_reset_reason_t hint)
{
}
esp_reset_reason_t IRAM_ATTR __attribute__((weak)) esp_reset_reason_get_hint(void)
{
return ESP_RST_UNKNOWN;
}