mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Rename Kconfig options (components/driver)
This commit is contained in:
parent
bf626f2aba
commit
e9f1011b1b
@ -10,11 +10,11 @@ menu "Driver configurations"
|
|||||||
be shut off when it is not working leading to lower power consumption. However
|
be shut off when it is not working leading to lower power consumption. However
|
||||||
using the FSM control ADC power will increase the noise of ADC.
|
using the FSM control ADC power will increase the noise of ADC.
|
||||||
|
|
||||||
config ADC2_DISABLE_DAC
|
config ADC_DISABLE_DAC
|
||||||
bool "Disable DAC when ADC2 is used on GPIO 25 and 26"
|
bool "Disable DAC when ADC2 is used on GPIO 25 and 26"
|
||||||
default y
|
default y
|
||||||
help
|
help
|
||||||
If this is set, the ADC2 driver will disables the output of the DAC corresponding to the specified
|
If this is set, the ADC2 driver will disable the output of the DAC corresponding to the specified
|
||||||
channel. This is the default value.
|
channel. This is the default value.
|
||||||
|
|
||||||
For testing, disable this option so that we can measure the output of DAC by internal ADC.
|
For testing, disable this option so that we can measure the output of DAC by internal ADC.
|
||||||
|
@ -1706,7 +1706,7 @@ esp_err_t adc2_get_raw(adc2_channel_t channel, adc_bits_width_t width_bit, int*
|
|||||||
}
|
}
|
||||||
|
|
||||||
//disable other peripherals
|
//disable other peripherals
|
||||||
#ifdef CONFIG_ADC2_DISABLE_DAC
|
#ifdef CONFIG_ADC_DISABLE_DAC
|
||||||
adc2_dac_disable( channel );
|
adc2_dac_disable( channel );
|
||||||
#endif
|
#endif
|
||||||
// set controller
|
// set controller
|
||||||
|
4
components/driver/sdkconfig.rename
Normal file
4
components/driver/sdkconfig.rename
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# sdkconfig replacement configurations for deprecated options formatted as
|
||||||
|
# CONFIG_DEPRECATED_OPTION CONFIG_NEW_OPTION
|
||||||
|
|
||||||
|
CONFIG_ADC2_DISABLE_DAC CONFIG_ADC_DISABLE_DAC
|
@ -125,7 +125,7 @@ CONFIG_BT_RESERVE_DRAM=0
|
|||||||
# ADC configuration
|
# ADC configuration
|
||||||
#
|
#
|
||||||
CONFIG_ADC_FORCE_XPD_FSM=
|
CONFIG_ADC_FORCE_XPD_FSM=
|
||||||
CONFIG_ADC2_DISABLE_DAC=y
|
CONFIG_ADC_DISABLE_DAC=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# ESP32-specific
|
# ESP32-specific
|
||||||
|
@ -25,7 +25,7 @@ CONFIG_COMPILER_STACK_CHECK_MODE_STRONG=y
|
|||||||
CONFIG_COMPILER_STACK_CHECK=y
|
CONFIG_COMPILER_STACK_CHECK=y
|
||||||
CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y
|
CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y
|
||||||
CONFIG_ESP_TIMER_PROFILING=y
|
CONFIG_ESP_TIMER_PROFILING=y
|
||||||
CONFIG_ADC2_DISABLE_DAC=n
|
CONFIG_ADC_DISABLE_DAC=n
|
||||||
CONFIG_COMPILER_WARN_WRITE_STRINGS=y
|
CONFIG_COMPILER_WARN_WRITE_STRINGS=y
|
||||||
CONFIG_SPI_MASTER_IN_IRAM=y
|
CONFIG_SPI_MASTER_IN_IRAM=y
|
||||||
CONFIG_EFUSE_VIRTUAL=y
|
CONFIG_EFUSE_VIRTUAL=y
|
||||||
|
Loading…
Reference in New Issue
Block a user