mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
7469f34948
- Replace TWAI_ISR_ATTR flag with linker.lf - Use the linker.lf to control the placement of the driver functions
33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
[mapping:hal]
|
|
archive: libhal.a
|
|
entries:
|
|
if APP_BUILD_TYPE_PURE_RAM_APP = n:
|
|
mmu_hal (noflash)
|
|
spi_flash_hal_iram (noflash)
|
|
spi_flash_encrypt_hal_iram (noflash)
|
|
if IDF_TARGET_ESP32 = y:
|
|
cache_hal_esp32 (noflash)
|
|
else:
|
|
cache_hal (noflash)
|
|
if SOC_GPSPI_SUPPORTED = y:
|
|
if HAL_SPI_MASTER_FUNC_IN_IRAM = y:
|
|
spi_hal_iram (noflash)
|
|
if HAL_SPI_SLAVE_FUNC_IN_IRAM = y:
|
|
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)
|
|
if SOC_LEDC_SUPPORTED = y:
|
|
ledc_hal_iram (noflash)
|
|
if SOC_I2C_SUPPORTED = y:
|
|
i2c_hal_iram (noflash)
|
|
if HAL_WDT_USE_ROM_IMPL = n:
|
|
wdt_hal_iram (noflash)
|
|
if SOC_SYSTIMER_SUPPORTED = y && HAL_SYSTIMER_USE_ROM_IMPL = n:
|
|
systimer_hal (noflash)
|
|
if SOC_GPSPI_SUPPORTED = y && IDF_TARGET_ESP32 = n:
|
|
spi_flash_hal_gpspi (noflash)
|
|
if SOC_PMU_SUPPORTED = y:
|
|
pmu_hal (noflash)
|