mirror of
https://github.com/espressif/esp-idf
synced 2025-03-24 08:29:11 -04:00
By unchecking "Place panic handler code in IRAM" in the menuconfig, the panic handlers will be placed in flash. Of course, flash cache must be activated when entering panic handlers.
24 lines
641 B
Plaintext
24 lines
641 B
Plaintext
[mapping:hal]
|
|
archive: libhal.a
|
|
entries:
|
|
spi_hal_iram (noflash)
|
|
spi_slave_hal_iram (noflash)
|
|
if UART_ISR_IN_IRAM = y || ESP_PANIC_HANDLER_IRAM = y:
|
|
uart_hal_iram (noflash)
|
|
else:
|
|
uart_hal_iram (default)
|
|
spi_flash_hal_iram (noflash)
|
|
ledc_hal_iram (noflash)
|
|
i2c_hal_iram (noflash)
|
|
cpu_hal (noflash)
|
|
soc_hal (noflash)
|
|
wdt_hal_iram (noflash)
|
|
if IDF_TARGET_ESP32C3 = n:
|
|
if TWAI_ISR_IN_IRAM = y:
|
|
twai_hal_iram (noflash)
|
|
else:
|
|
twai_hal_iram (default)
|
|
if IDF_TARGET_ESP32 = n:
|
|
spi_flash_hal_gpspi (noflash)
|
|
systimer_hal (noflash)
|