mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-25 17:58:46 +00:00
25 lines
966 B
Plaintext
25 lines
966 B
Plaintext
menu "ESP-Driver:I2S Configurations"
|
|
depends on SOC_I2S_SUPPORTED
|
|
config I2S_ISR_IRAM_SAFE
|
|
bool "I2S ISR IRAM-Safe"
|
|
default n
|
|
select GDMA_ISR_HANDLER_IN_IRAM if SOC_GDMA_SUPPORTED
|
|
help
|
|
Ensure the I2S interrupt is IRAM-Safe by allowing the interrupt handler to be
|
|
executable when the cache is disabled (e.g. SPI Flash write).
|
|
|
|
config I2S_CTRL_FUNC_IN_IRAM
|
|
bool "Place I2S control functions into IRAM"
|
|
default n
|
|
help
|
|
Place I2S control functions into IRAM,
|
|
so that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.
|
|
|
|
config I2S_ENABLE_DEBUG_LOG
|
|
bool "Enable I2S debug log"
|
|
default n
|
|
help
|
|
whether to enable the debug log message for I2S driver.
|
|
Note that, this option only controls the I2S driver log, will not affect other drivers.
|
|
endmenu # I2S Configuration
|