Files
esp-idf/components/esp_driver_i2s/Kconfig
T

17 lines
623 B
Plaintext
Raw Normal View History

2023-11-07 21:06:07 +08:00
menu "ESP-Driver:I2S Configurations"
depends on SOC_I2S_SUPPORTED
config I2S_ISR_IRAM_SAFE
bool "I2S ISR IRAM-Safe"
default n
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_ENABLE_DEBUG_LOG
bool "Enable I2S debug log"
default n
help
2024-03-25 14:11:33 +08:00
whether to enable the debug log message for I2S driver.
2023-11-07 21:06:07 +08:00
Note that, this option only controls the I2S driver log, will not affect other drivers.
endmenu # I2S Configuration