1# Copyright (c) 2020 Libre Solar Technologies GmbH 2# Copyright (c) 2020 Innoseis B.V 3# 4# SPDX-License-Identifier: Apache-2.0 5 6config ADC_ADS1119 7 bool "Texas instruments ADS1119 I2C" 8 default y 9 depends on DT_HAS_TI_ADS1119_ENABLED 10 select I2C 11 select ADC_CONFIGURABLE_INPUTS 12 help 13 Enable the driver implementation for the ADS1119 14 15if ADC_ADS1119 16 17config ADC_ADS1119_ASYNC_THREAD_INIT_PRIO 18 int "ADC ADS1119 async thread priority" 19 default 0 20 21config ADC_ADS1119_ACQUISITION_THREAD_STACK_SIZE 22 int "Stack size for the ADC data acquisition thread" 23 default 400 24 help 25 Size of the stack used for the internal data acquisition 26 thread. 27 28endif 29