zephyr/drivers/adc/Kconfig.mcux
Gerard Marull-Paretas 95fb0ded6b kconfig: remove Enable from boolean prompts
According to Kconfig guidelines, boolean prompts must not start with
"Enable...". The following command has been used to automate the changes
in this patch:

sed -i "s/bool \"[Ee]nables\? \(\w\)/bool \"\U\1/g" **/Kconfig*

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
2022-03-09 15:35:54 +01:00

89 lines
1.7 KiB
Plaintext

# ADC configuration options
# Copyright (c) 2015 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
config ADC_MCUX_ADC12
bool "MCUX ADC12 driver"
depends on HAS_MCUX_ADC12
help
Enable the MCUX ADC12 driver.
config ADC_MCUX_ADC16
bool "MCUX ADC16 driver"
depends on HAS_MCUX_ADC16
help
Enable the MCUX ADC16 driver.
config ADC_MCUX_12B1MSPS_SAR
bool "MCUX 12B1MSPS SAR ADC driver"
depends on HAS_MCUX_12B1MSPS_SAR
help
Enable the MCUX 12B1MSPS SAR ADC driver.
config ADC_MCUX_LPADC
bool "MCUX LPADC driver"
depends on HAS_MCUX_LPADC
help
Enable the MCUX LPADC driver.
if ADC_MCUX_ADC16
choice
prompt "Clock Divide Selection"
default ADC_MCUX_ADC16_CLK_DIV_RATIO_1
config ADC_MCUX_ADC16_CLK_DIV_RATIO_1
bool "Divide ratio is 1"
config ADC_MCUX_ADC16_CLK_DIV_RATIO_2
bool "Divide ratio is 2"
config ADC_MCUX_ADC16_CLK_DIV_RATIO_4
bool "Divide ratio is 4"
config ADC_MCUX_ADC16_CLK_DIV_RATIO_8
bool "Divide ratio is 8"
endchoice
choice ADC_MCUX_ADC16_VREF
prompt "Voltage Reference Selection"
default ADC_MCUX_ADC16_VREF_DEFAULT
config ADC_MCUX_ADC16_VREF_DEFAULT
bool "Default voltage reference pair V_REFH and V_REFL"
config ADC_MCUX_ADC16_VREF_ALTERNATE
bool "Alternate reference pair"
endchoice
config ADC_MCUX_ADC16_ENABLE_EDMA
bool "EDMA for adc driver"
depends on HAS_MCUX_ADC16 && HAS_MCUX_EDMA
help
Enable the MCUX ADC16 driver.
if ADC_MCUX_ADC16_ENABLE_EDMA
config ADC_MCUX_ADC16_HW_TRIGGER
bool "ADC HW TRIGGER"
default y
help
Support HW Trigger ADC
endif # ADC_MCUX_ADC16_ENABLE_EDMA
endif # ADC_MCUX_ADC16
if ADC_MCUX_LPADC
config LPADC_DO_OFFSET_CALIBRATION
bool "Do offset calibration"
help
Do offset calibration
endif # ADC_MCUX_LPADC