1# Copyright (c) 2023 Grinn 2# SPDX -License-Identifier: Apache-2.0 3 4config ADC_AD5592 5 bool "AD5592 ADC driver" 6 default y 7 depends on DT_HAS_ADI_AD5592_ADC_ENABLED 8 select MFD 9 help 10 Enable the AD5592 ADC driver. 11 12config ADC_AD5592_ACQUISITION_THREAD_STACK_SIZE 13 int "Stack size for the ADC data acquisition thread" 14 depends on ADC_AD5592 15 default 384 16 help 17 Size of the stack used for the internal data acquisition 18 thread. 19 20config ADC_AD5592_ACQUISITION_THREAD_PRIO 21 int "Priority for the ADC data acquisition thread" 22 depends on ADC_AD5592 23 default 0 24 help 25 Priority level for the internal ADC data acquisition thread. 26