2022-05-28 05:27:02 -04:00
|
|
|
menu "Driver Configurations"
|
2018-03-07 02:04:43 -05:00
|
|
|
|
2024-01-31 03:07:51 -05:00
|
|
|
orsource "./twai/Kconfig.twai"
|
|
|
|
|
|
|
|
menu "Legacy ADC Driver 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
|
2024-03-25 02:11:33 -04:00
|
|
|
Whether to suppress the deprecation warnings when using legacy adc driver (driver/adc.h).
|
2022-07-15 00:52:44 -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.
|
|
|
|
|
|
|
|
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
|
2024-03-25 02:11:33 -04:00
|
|
|
Whether to suppress the deprecation warnings when using legacy adc calibration
|
2022-07-15 00:52:44 -04:00
|
|
|
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.
|
|
|
|
|
2024-01-31 03:07:51 -05:00
|
|
|
endmenu # Legacy ADC Calibration Configuration
|
|
|
|
endmenu # Legacy ADC Driver Configuration
|
2018-03-07 02:04:43 -05:00
|
|
|
|
2024-05-31 13:07:41 -04:00
|
|
|
menu "Legacy DAC Driver Configurations"
|
|
|
|
depends on SOC_DAC_SUPPORTED
|
|
|
|
config DAC_SUPPRESS_DEPRECATE_WARN
|
|
|
|
bool "Suppress legacy driver deprecated warning"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Whether to suppress the deprecation warnings when using legacy dac driver (driver/dac.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 # Legacy DAC Driver Configurations
|
|
|
|
|
2024-01-31 03:07:51 -05:00
|
|
|
menu "Legacy MCPWM Driver Configurations"
|
|
|
|
depends on SOC_MCPWM_SUPPORTED
|
|
|
|
config MCPWM_SUPPRESS_DEPRECATE_WARN
|
|
|
|
bool "Suppress legacy driver deprecated warning"
|
|
|
|
default n
|
|
|
|
help
|
2024-03-25 02:11:33 -04:00
|
|
|
Whether to suppress the deprecation warnings when using legacy MCPWM driver (driver/mcpwm.h).
|
2024-01-31 03:07:51 -05:00
|
|
|
If you want to continue using the legacy driver, and don't want to see related deprecation warnings,
|
|
|
|
you can enable this option.
|
|
|
|
endmenu # Legacy MCPWM Driver Configurations
|
2020-08-04 00:52:10 -04:00
|
|
|
|
2024-02-18 05:12:03 -05:00
|
|
|
menu "Legacy Timer Group Driver Configurations"
|
|
|
|
depends on SOC_GPTIMER_SUPPORTED
|
|
|
|
config GPTIMER_SUPPRESS_DEPRECATE_WARN
|
|
|
|
bool "Suppress legacy driver deprecated warning"
|
|
|
|
default n
|
|
|
|
help
|
2024-03-25 02:11:33 -04:00
|
|
|
Whether to suppress the deprecation warnings when using legacy timer group driver (driver/timer.h).
|
2024-02-18 05:12:03 -05:00
|
|
|
If you want to continue using the legacy driver, and don't want to see related deprecation warnings,
|
|
|
|
you can enable this option.
|
|
|
|
|
|
|
|
endmenu # Legacy Timer Group Driver Configurations
|
|
|
|
|
2024-02-18 22:43:13 -05:00
|
|
|
menu "Legacy RMT Driver Configurations"
|
|
|
|
depends on SOC_RMT_SUPPORTED
|
|
|
|
config RMT_SUPPRESS_DEPRECATE_WARN
|
|
|
|
bool "Suppress legacy driver deprecated warning"
|
|
|
|
default n
|
|
|
|
help
|
2024-03-25 02:11:33 -04:00
|
|
|
Whether to suppress the deprecation warnings when using legacy rmt driver (driver/rmt.h).
|
2024-02-18 22:43:13 -05:00
|
|
|
If you want to continue using the legacy driver, and don't want to see related deprecation warnings,
|
|
|
|
you can enable this option.
|
|
|
|
endmenu # Legacy RMT Driver Configurations
|
|
|
|
|
2024-05-31 13:07:41 -04:00
|
|
|
menu "Legacy I2S Driver Configurations"
|
|
|
|
depends on SOC_I2S_SUPPORTED
|
|
|
|
config I2S_SUPPRESS_DEPRECATE_WARN
|
|
|
|
bool "Suppress legacy driver deprecated warning"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Whether to suppress the deprecation warnings when using legacy i2s driver (driver/i2s.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 # Legacy I2S Driver Configurationss
|
|
|
|
|
|
|
|
menu "Legacy PCNT Driver Configurations"
|
|
|
|
depends on SOC_PCNT_SUPPORTED
|
|
|
|
config PCNT_SUPPRESS_DEPRECATE_WARN
|
|
|
|
bool "Suppress legacy driver deprecated warning"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
whether to suppress the deprecation warnings when using legacy PCNT driver (driver/pcnt.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 # Legacy PCNT Driver Configurationss
|
|
|
|
|
|
|
|
menu "Legacy SDM Driver Configurations"
|
|
|
|
depends on SOC_SDM_SUPPORTED
|
|
|
|
config SDM_SUPPRESS_DEPRECATE_WARN
|
|
|
|
bool "Suppress legacy driver deprecated warning"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
whether to suppress the deprecation warnings when using legacy SDM driver (driver/sigmadelta.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 # Legacy SDM Driver Configurationss
|
|
|
|
|
|
|
|
menu "Legacy Temperature Sensor Driver Configurations"
|
|
|
|
depends on SOC_TEMP_SENSOR_SUPPORTED
|
|
|
|
config TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN
|
|
|
|
bool "Suppress legacy driver deprecated warning"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
whether 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.
|
|
|
|
endmenu # Legacy Temperature Sensor Driver Configurationss
|
|
|
|
|
2021-08-18 07:45:51 -04:00
|
|
|
endmenu # Driver configurations
|