zephyr/drivers/adc/Kconfig.ads1119
Kumar Gala e438da8a36 adc: Move to using select in Kconfig for I2C & SPI busses
Move to using 'select SPI'/'select I2C' instead of 'depends on'
(see commit df81fef944 for more
 details)

Signed-off-by: Kumar Gala <galak@kernel.org>
2022-08-12 17:39:21 +02:00

29 lines
646 B
Plaintext

# Copyright (c) 2020 Libre Solar Technologies GmbH
# Copyright (c) 2020 Innoseis B.V
#
# SPDX-License-Identifier: Apache-2.0
config ADC_ADS1119
bool "Texas instruments ADS1119 I2C"
default y
depends on DT_HAS_TI_ADS1119_ENABLED
select I2C
select ADC_CONFIGURABLE_INPUTS
help
Enable the driver implementation for the ADS1119
if ADC_ADS1119
config ADC_ADS1119_ASYNC_THREAD_INIT_PRIO
int "ADC ADS1119 async thread priority"
default 0
config ADC_ADS1119_ACQUISITION_THREAD_STACK_SIZE
int "Stack size for the ADC data acquisition thread"
default 400
help
Size of the stack used for the internal data acquisition
thread.
endif