Merge branch 'fix/brownout_crash' into 'master'

fix(brownout): fixed brownout isr crashing if cache disabled

Closes IDF-9731

See merge request espressif/esp-idf!30746
This commit is contained in:
Marius Vikhammer 2024-05-15 09:13:04 +08:00
commit fc6a068a52

View File

@ -28,7 +28,7 @@
#define BROWNOUT_DET_LVL 0 #define BROWNOUT_DET_LVL 0
#endif #endif
static __attribute__((unused)) DRAM_ATTR const char *TAG = "BOD"; static __attribute__((unused)) DRAM_ATTR const char TAG[] = "BOD";
#if CONFIG_ESP_SYSTEM_BROWNOUT_INTR #if CONFIG_ESP_SYSTEM_BROWNOUT_INTR
IRAM_ATTR static void rtc_brownout_isr_handler(void *arg) IRAM_ATTR static void rtc_brownout_isr_handler(void *arg)