2022-05-28 05:27:02 -04:00
|
|
|
menu "Driver Configurations"
|
2018-03-07 02:04:43 -05:00
|
|
|
|
2022-07-15 00:52:44 -04:00
|
|
|
menu "Legacy ADC Configuration"
|
2018-03-07 02:04:43 -05:00
|
|
|
|
2019-04-29 08:22:57 -04:00
|
|
|
config ADC_DISABLE_DAC
|
2022-07-15 00:52:44 -04:00
|
|
|
depends on SOC_DAC_SUPPORTED
|
2019-01-25 11:10:53 -05:00
|
|
|
bool "Disable DAC when ADC2 is used on GPIO 25 and 26"
|
|
|
|
default y
|
|
|
|
help
|
2019-04-29 08:22:57 -04:00
|
|
|
If this is set, the ADC2 driver will disable the output of the DAC corresponding to the specified
|
2019-01-25 11:10:53 -05:00
|
|
|
channel. This is the default value.
|
2018-01-24 05:46:34 -05:00
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
For testing, disable this option so that we can measure the output of DAC by internal ADC.
|
2018-01-24 05:46:34 -05:00
|
|
|
|
2022-07-15 00:52:44 -04:00
|
|
|
config ADC_SUPPRESS_DEPRECATE_WARN
|
|
|
|
bool "Suppress legacy driver deprecated warning"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Wether to suppress the deprecation warnings when using legacy adc driver (driver/adc.h).
|
|
|
|
If you want to continue using the legacy driver, and don't want to see related deprecation warnings,
|
|
|
|
you can enable this option.
|
|
|
|
|
|
|
|
menu "Legacy ADC Calibration Configuration"
|
|
|
|
|
|
|
|
config ADC_CAL_EFUSE_TP_ENABLE
|
|
|
|
depends on IDF_TARGET_ESP32
|
|
|
|
bool "Use Two Point Values"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Some ESP32s have Two Point calibration values burned into eFuse BLOCK3.
|
|
|
|
This option will allow the ADC calibration component to characterize the
|
|
|
|
ADC-Voltage curve using Two Point values if they are available.
|
|
|
|
|
|
|
|
config ADC_CAL_EFUSE_VREF_ENABLE
|
|
|
|
depends on IDF_TARGET_ESP32
|
|
|
|
bool "Use eFuse Vref"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Some ESP32s have Vref burned into eFuse BLOCK0. This option will allow
|
|
|
|
the ADC calibration component to characterize the ADC-Voltage curve using
|
|
|
|
eFuse Vref if it is available.
|
|
|
|
|
|
|
|
config ADC_CAL_LUT_ENABLE
|
|
|
|
depends on IDF_TARGET_ESP32
|
|
|
|
bool "Use Lookup Tables"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
This option will allow the ADC calibration component to use Lookup Tables
|
|
|
|
to correct for non-linear behavior in 11db attenuation. Other attenuations
|
|
|
|
do not exhibit non-linear behavior hence will not be affected by this option.
|
|
|
|
|
|
|
|
config ADC_CALI_SUPPRESS_DEPRECATE_WARN
|
|
|
|
bool "Suppress legacy driver deprecated warning"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Wether to suppress the deprecation warnings when using legacy adc calibration
|
|
|
|
driver (esp_adc_cal.h).
|
|
|
|
If you want to continue using the legacy driver, and don't want to see related
|
|
|
|
deprecation warnings, you can enable this option.
|
|
|
|
|
|
|
|
endmenu
|
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
endmenu # ADC Configuration
|
2018-03-07 02:04:43 -05:00
|
|
|
|
2022-05-28 05:27:02 -04:00
|
|
|
menu "SPI Configuration"
|
2018-03-07 02:04:43 -05:00
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
config SPI_MASTER_IN_IRAM
|
|
|
|
bool "Place transmitting functions of SPI master into IRAM"
|
|
|
|
default n
|
2023-02-23 06:43:10 -05:00
|
|
|
depends on !FREERTOS_PLACE_FUNCTIONS_INTO_FLASH
|
2019-01-25 11:10:53 -05:00
|
|
|
select SPI_MASTER_ISR_IN_IRAM
|
|
|
|
help
|
|
|
|
Normally only the ISR of SPI master is placed in the IRAM, so that it
|
|
|
|
can work without the flash when interrupt is triggered.
|
|
|
|
For other functions, there's some possibility that the flash cache
|
|
|
|
miss when running inside and out of SPI functions, which may increase
|
|
|
|
the interval of SPI transactions.
|
|
|
|
Enable this to put ``queue_trans``, ``get_trans_result`` and
|
|
|
|
``transmit`` functions into the IRAM to avoid possible cache miss.
|
2018-06-11 07:54:18 -04:00
|
|
|
|
2023-02-23 06:43:10 -05:00
|
|
|
This configuration won't be available if `CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH` is enabled.
|
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
During unit test, this is enabled to measure the ideal case of api.
|
2018-06-11 07:54:18 -04:00
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
config SPI_MASTER_ISR_IN_IRAM
|
|
|
|
bool "Place SPI master ISR function into IRAM"
|
|
|
|
default y
|
2023-04-03 09:16:55 -04:00
|
|
|
depends on !HEAP_PLACE_FUNCTION_INTO_FLASH
|
2023-02-23 06:43:10 -05:00
|
|
|
select PERIPH_CTRL_FUNC_IN_IRAM
|
2023-04-02 23:01:12 -04:00
|
|
|
select HAL_SPI_MASTER_FUNC_IN_IRAM
|
2019-01-25 11:10:53 -05:00
|
|
|
help
|
|
|
|
Place the SPI master ISR in to IRAM to avoid possible cache miss.
|
2018-10-23 04:57:32 -04:00
|
|
|
|
2023-04-03 09:16:55 -04:00
|
|
|
Enabling this configuration is possible only when HEAP_PLACE_FUNCTION_INTO_FLASH
|
|
|
|
is disabled since the spi master uses can allocate transactions buffers into DMA
|
|
|
|
memory section using the heap component API that ipso facto has to be placed in IRAM.
|
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
Also you can forbid the ISR being disabled during flash writing
|
|
|
|
access, by add ESP_INTR_FLAG_IRAM when initializing the driver.
|
2018-06-11 07:54:18 -04:00
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
config SPI_SLAVE_IN_IRAM
|
|
|
|
bool "Place transmitting functions of SPI slave into IRAM"
|
|
|
|
default n
|
|
|
|
select SPI_SLAVE_ISR_IN_IRAM
|
|
|
|
help
|
|
|
|
Normally only the ISR of SPI slave is placed in the IRAM, so that it
|
|
|
|
can work without the flash when interrupt is triggered.
|
|
|
|
For other functions, there's some possibility that the flash cache
|
|
|
|
miss when running inside and out of SPI functions, which may increase
|
|
|
|
the interval of SPI transactions.
|
|
|
|
Enable this to put ``queue_trans``, ``get_trans_result`` and
|
|
|
|
``transmit`` functions into the IRAM to avoid possible cache miss.
|
2018-08-20 06:30:40 -04:00
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
config SPI_SLAVE_ISR_IN_IRAM
|
|
|
|
bool "Place SPI slave ISR function into IRAM"
|
|
|
|
default y
|
2023-01-03 22:24:54 -05:00
|
|
|
select PERIPH_CTRL_FUNC_IN_IRAM
|
2023-04-02 23:01:12 -04:00
|
|
|
select HAL_SPI_SLAVE_FUNC_IN_IRAM
|
2019-01-25 11:10:53 -05:00
|
|
|
help
|
|
|
|
Place the SPI slave ISR in to IRAM to avoid possible cache miss.
|
2018-10-23 04:57:32 -04:00
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
Also you can forbid the ISR being disabled during flash writing
|
|
|
|
access, by add ESP_INTR_FLAG_IRAM when initializing the driver.
|
2018-08-20 06:30:40 -04:00
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
endmenu # SPI Configuration
|
2018-06-11 07:54:18 -04:00
|
|
|
|
2023-05-12 02:22:31 -04:00
|
|
|
orsource "./twai/Kconfig.twai"
|
2020-08-04 00:52:10 -04:00
|
|
|
|
2022-03-04 04:59:07 -05:00
|
|
|
menu "Temperature sensor Configuration"
|
2022-03-07 22:53:22 -05:00
|
|
|
depends on SOC_TEMP_SENSOR_SUPPORTED
|
2022-03-04 04:59:07 -05:00
|
|
|
|
|
|
|
config TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN
|
|
|
|
bool "Suppress legacy driver deprecated warning"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Wether to suppress the deprecation warnings when using legacy temperature sensor driver
|
|
|
|
(driver/temp_sensor.h). If you want to continue using the legacy driver,
|
|
|
|
and don't want to see related deprecation warnings, you can enable this option.
|
|
|
|
|
|
|
|
config TEMP_SENSOR_ENABLE_DEBUG_LOG
|
|
|
|
bool "Enable debug log"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Wether to enable the debug log message for temperature sensor driver.
|
|
|
|
Note that, this option only controls the temperature sensor driver log, won't affect other drivers.
|
|
|
|
|
2023-03-02 21:38:40 -05:00
|
|
|
config TEMP_SENSOR_ISR_IRAM_SAFE
|
|
|
|
depends on SOC_TEMPERATURE_SENSOR_INTR_SUPPORT
|
|
|
|
bool "Temperature sensor ISR IRAM-Safe"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Ensure the Temperature Sensor interrupt is IRAM-Safe by allowing the interrupt handler to be
|
|
|
|
executable when the cache is disabled (e.g. SPI Flash write).
|
|
|
|
|
2022-03-04 04:59:07 -05:00
|
|
|
endmenu # TEMP_SENSOR Configuration
|
|
|
|
|
2023-08-29 00:25:05 -04:00
|
|
|
orsource "./uart/Kconfig.uart"
|
2019-08-26 05:14:15 -04:00
|
|
|
|
2020-11-12 07:39:55 -05:00
|
|
|
menu "GPIO Configuration"
|
|
|
|
config GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL
|
|
|
|
bool "Support light sleep GPIO pullup/pulldown configuration for ESP32"
|
|
|
|
depends on IDF_TARGET_ESP32
|
|
|
|
help
|
|
|
|
This option is intended to fix the bug that ESP32 is not able to switch to configured
|
|
|
|
pullup/pulldown mode in sleep.
|
|
|
|
If this option is selected, chip will automatically emulate the behaviour of switching,
|
|
|
|
and about 450B of source codes would be placed into IRAM.
|
2022-03-09 01:37:41 -05:00
|
|
|
|
|
|
|
config GPIO_CTRL_FUNC_IN_IRAM
|
|
|
|
bool "Place GPIO control functions into IRAM"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Place GPIO control functions (like intr_disable/set_level) into IRAM,
|
|
|
|
so that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.
|
2020-11-12 07:39:55 -05:00
|
|
|
endmenu # GPIO Configuration
|
|
|
|
|
2022-06-22 04:34:13 -04:00
|
|
|
menu "Sigma Delta Modulator Configuration"
|
|
|
|
depends on SOC_SDM_SUPPORTED
|
|
|
|
config SDM_CTRL_FUNC_IN_IRAM
|
|
|
|
bool "Place SDM control functions into IRAM"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Place SDM control functions (like set_duty) into IRAM,
|
|
|
|
so that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.
|
|
|
|
Enabling this option can improve driver performance as well.
|
|
|
|
|
|
|
|
config SDM_SUPPRESS_DEPRECATE_WARN
|
|
|
|
bool "Suppress legacy driver deprecated warning"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Wether to suppress the deprecation warnings when using legacy sigma delta driver.
|
|
|
|
If you want to continue using the legacy driver, and don't want to see related deprecation warnings,
|
|
|
|
you can enable this option.
|
|
|
|
|
|
|
|
config SDM_ENABLE_DEBUG_LOG
|
|
|
|
bool "Enable debug log"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Wether to enable the debug log message for SDM driver.
|
|
|
|
Note that, this option only controls the SDM driver log, won't affect other drivers.
|
|
|
|
endmenu # Sigma Delta Modulator Configuration
|
|
|
|
|
2023-03-01 06:50:45 -05:00
|
|
|
menu "Analog Comparator Configuration"
|
|
|
|
depends on SOC_ANA_CMPR_SUPPORTED
|
|
|
|
config ANA_CMPR_ISR_IRAM_SAFE
|
|
|
|
bool "Analog comparator ISR IRAM-Safe"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Ensure the Analog Comparator interrupt is IRAM-Safe by allowing the interrupt handler to be
|
|
|
|
executable when the cache is disabled (e.g. SPI Flash write).
|
|
|
|
|
|
|
|
config ANA_CMPR_CTRL_FUNC_IN_IRAM
|
|
|
|
bool "Place Analog Comparator control functions into IRAM"
|
|
|
|
default n
|
|
|
|
help
|
2023-03-13 00:34:53 -04:00
|
|
|
Place Analog Comparator control functions (like ana_cmpr_set_internal_reference) into IRAM,
|
|
|
|
so that these functions can be IRAM-safe and able to be called in an IRAM interrupt context.
|
2023-03-01 06:50:45 -05:00
|
|
|
Enabling this option can improve driver performance as well.
|
|
|
|
|
|
|
|
config ANA_CMPR_ENABLE_DEBUG_LOG
|
|
|
|
bool "Enable debug log"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Wether to enable the debug log message for Analog Comparator driver.
|
|
|
|
Note that, this option only controls the Analog Comparator driver log, won't affect other drivers.
|
|
|
|
endmenu # Analog Comparator Configuration
|
|
|
|
|
2023-08-06 23:46:28 -04:00
|
|
|
orsource "./gptimer/Kconfig.gptimer"
|
2022-01-02 03:14:17 -05:00
|
|
|
|
2023-08-01 03:00:05 -04:00
|
|
|
orsource "./pcnt/Kconfig.pcnt"
|
2022-01-17 01:42:09 -05:00
|
|
|
|
2023-08-01 05:32:26 -04:00
|
|
|
orsource "./rmt/Kconfig.rmt"
|
2022-04-06 23:50:41 -04:00
|
|
|
|
2023-07-26 06:13:47 -04:00
|
|
|
orsource "./mcpwm/Kconfig.mcpwm"
|
2022-05-28 05:27:02 -04:00
|
|
|
|
2021-08-18 07:45:51 -04:00
|
|
|
menu "I2S Configuration"
|
|
|
|
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_SUPPRESS_DEPRECATE_WARN
|
|
|
|
bool "Suppress leagcy driver deprecated warning"
|
|
|
|
default n
|
|
|
|
help
|
2022-04-07 03:32:46 -04:00
|
|
|
Enable this option will suppress the deprecation warnings of using APIs in legacy I2S driver.
|
|
|
|
|
|
|
|
config I2S_ENABLE_DEBUG_LOG
|
|
|
|
bool "Enable I2S debug log"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Wether to enable the debug log message for I2S driver.
|
|
|
|
Note that, this option only controls the I2S driver log, will not affect other drivers.
|
2021-08-18 07:45:51 -04:00
|
|
|
endmenu # I2S Configuration
|
|
|
|
|
2022-05-09 05:33:51 -04:00
|
|
|
menu "DAC Configuration"
|
|
|
|
depends on SOC_DAC_SUPPORTED
|
2022-05-24 05:26:36 -04:00
|
|
|
config DAC_CTRL_FUNC_IN_IRAM
|
|
|
|
bool "Place DAC control functions into IRAM"
|
|
|
|
default n
|
|
|
|
help
|
2022-10-10 07:17:22 -04:00
|
|
|
Place DAC control functions (e.g. 'dac_oneshot_output_voltage') into IRAM,
|
2022-05-24 05:26:36 -04:00
|
|
|
so that this function can be IRAM-safe and able to be called in the other IRAM interrupt context.
|
|
|
|
Enabling this option can improve driver performance as well.
|
|
|
|
|
2022-05-09 05:33:51 -04:00
|
|
|
config DAC_ISR_IRAM_SAFE
|
|
|
|
bool "DAC ISR IRAM-Safe"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Ensure the DAC interrupt is IRAM-Safe by allowing the interrupt handler to be
|
|
|
|
executable when the cache is disabled (e.g. SPI Flash write).
|
|
|
|
|
|
|
|
config DAC_SUPPRESS_DEPRECATE_WARN
|
|
|
|
bool "Suppress legacy driver deprecated warning"
|
|
|
|
default n
|
|
|
|
help
|
2022-10-10 07:17:22 -04:00
|
|
|
Wether to suppress the deprecation warnings when using legacy DAC driver (driver/dac.h).
|
2022-05-09 05:33:51 -04:00
|
|
|
If you want to continue using the legacy driver, and don't want to see related deprecation warnings,
|
|
|
|
you can enable this option.
|
|
|
|
|
|
|
|
config DAC_ENABLE_DEBUG_LOG
|
|
|
|
bool "Enable debug log"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Wether to enable the debug log message for DAC driver.
|
|
|
|
Note that, this option only controls the DAC driver log, won't affect other drivers.
|
2022-05-24 05:26:36 -04:00
|
|
|
|
|
|
|
config DAC_DMA_AUTO_16BIT_ALIGN
|
|
|
|
bool "Align the continuous data to 16 bit automatically"
|
2022-10-10 07:17:22 -04:00
|
|
|
depends on SOC_DAC_DMA_16BIT_ALIGN
|
2022-05-24 05:26:36 -04:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
Whether to left shift the continuous data to align every bytes to 16 bits in the driver.
|
|
|
|
On ESP32, although the DAC resolution is only 8 bits,
|
|
|
|
the hardware requires 16 bits data in continuous mode.
|
|
|
|
By enabling this option, the driver will left shift 8 bits for the input data automatically.
|
|
|
|
Only disable this option when you decide to do this step by yourself.
|
|
|
|
Note that the driver will allocate a new piece of memory to save the converted data.
|
|
|
|
|
2022-05-09 05:33:51 -04:00
|
|
|
endmenu # DAC Configuration
|
|
|
|
|
2022-11-07 12:54:23 -05:00
|
|
|
menu "USB Serial/JTAG Configuration"
|
|
|
|
depends on SOC_USB_SERIAL_JTAG_SUPPORTED
|
|
|
|
config USJ_NO_AUTO_LS_ON_CONNECTION
|
|
|
|
bool "Don't enter the automatic light sleep when USB Serial/JTAG port is connected"
|
|
|
|
depends on PM_ENABLE && ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED && !SOC_USB_SERIAL_JTAG_SUPPORT_LIGHT_SLEEP
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
If enabled, the chip will constantly monitor the connection status of the USB Serial/JTAG port. As long
|
|
|
|
as the USB Serial/JTAG is connected, a ESP_PM_NO_LIGHT_SLEEP power management lock will be acquired to
|
|
|
|
prevent the system from entering light sleep.
|
|
|
|
This option can be useful if serial monitoring is needed via USB Serial/JTAG while power management is
|
|
|
|
enabled, as the USB Serial/JTAG cannot work under light sleep and after waking up from light sleep.
|
|
|
|
Note. This option can only control the automatic Light-Sleep behavior. If esp_light_sleep_start() is
|
|
|
|
called manually from the program, enabling this option will not prevent light sleep entry even if the
|
|
|
|
USB Serial/JTAG is in use.
|
|
|
|
endmenu # USB Serial/JTAG Configuration
|
|
|
|
|
2022-12-05 22:57:43 -05:00
|
|
|
menu "Parallel IO Configuration"
|
|
|
|
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
|
|
|
|
|
2023-09-21 07:27:43 -04:00
|
|
|
orsource "./ledc/Kconfig.ledc"
|
2023-06-14 00:25:05 -04:00
|
|
|
|
2023-08-03 00:29:44 -04:00
|
|
|
menu "I2C Configuration"
|
|
|
|
config I2C_ISR_IRAM_SAFE
|
|
|
|
bool "I2C ISR IRAM-Safe"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Ensure the I2C interrupt is IRAM-Safe by allowing the interrupt handler to be
|
|
|
|
executable when the cache is disabled (e.g. SPI Flash write).
|
|
|
|
note: This cannot be used in the I2C legacy driver.
|
|
|
|
|
|
|
|
config I2C_ENABLE_DEBUG_LOG
|
|
|
|
bool "Enable I2C debug log"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Wether to enable the debug log message for I2C driver.
|
|
|
|
Note that this option only controls the I2C driver log, will not affect other drivers.
|
|
|
|
|
|
|
|
note: This cannot be used in the I2C legacy driver.
|
|
|
|
|
|
|
|
endmenu # I2C Configurations
|
|
|
|
|
2021-08-18 07:45:51 -04:00
|
|
|
endmenu # Driver configurations
|