mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
4c57f50fe4
This commit adds the feature where the TWAI ISR will continue to run even if the cache is disabled. Whilst cache is disabled, any received messages will go into the RX queue, and any pending TX messages in the TX queue will be transmitted. This feature should be enabled using the CONFIG_TWAI_ISR_IN_IRAM option.
22 lines
527 B
Plaintext
22 lines
527 B
Plaintext
[mapping:hal]
|
|
archive: libhal.a
|
|
entries:
|
|
spi_hal_iram (noflash)
|
|
spi_slave_hal_iram (noflash)
|
|
if UART_ISR_IN_IRAM = y:
|
|
uart_hal_iram (noflash)
|
|
else:
|
|
uart_hal_iram (default)
|
|
spi_flash_hal_iram (noflash)
|
|
ledc_hal_iram (noflash)
|
|
i2c_hal_iram (noflash)
|
|
spi_flash_hal_gpspi (noflash)
|
|
cpu_hal (noflash)
|
|
soc_hal (noflash)
|
|
wdt_hal_iram (noflash)
|
|
systimer_hal (noflash)
|
|
if TWAI_ISR_IN_IRAM = y:
|
|
twai_hal_iram (noflash)
|
|
else:
|
|
twai_hal_iram (default)
|