mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
20 lines
766 B
Plaintext
20 lines
766 B
Plaintext
menu "ESP-Driver:Parallel IO Configurations"
|
|
depends on SOC_PARLIO_SUPPORTED
|
|
|
|
config PARLIO_ENABLE_DEBUG_LOG
|
|
bool "Enable debug log"
|
|
default n
|
|
help
|
|
Wether to enable the debug log message for parallel IO driver.
|
|
Note that, this option only controls the parallel IO driver log, won't affect other drivers.
|
|
|
|
config PARLIO_ISR_IRAM_SAFE
|
|
bool "Parallel IO ISR IRAM-Safe"
|
|
default n
|
|
select GDMA_CTRL_FUNC_IN_IRAM # the driver needs to start the GDMA in the interrupt
|
|
help
|
|
Ensure the Parallel IO interrupt is IRAM-Safe by allowing the interrupt handler to be
|
|
executable when the cache is disabled (e.g. SPI Flash write).
|
|
|
|
endmenu # Parallel IO Configuration
|