1# Copyright (c) 2025 Analog Devices, Inc.
2# SPDX-License-Identifier: Apache-2.0
3
4config ADC_AD7124
5	bool "ADI AD7124 Analog-to-Digital Converter"
6	default y
7	depends on DT_HAS_ADI_AD7124_ADC_ENABLED
8	select SPI
9	select CRC
10	select ADC_CONFIGURABLE_INPUTS
11	help
12	  Enable the ad7124 adc
13
14config ADI_AD7124_ADC_ACQUISITION_THREAD_INIT_PRIO
15	int "ADC data acquisition thread priority"
16	default 0
17	depends on ADC_AD7124 && ADC_ASYNC
18
19config ADI_AD7124_ADC_ACQUISITION_THREAD_STACK_SIZE
20	int "Stack size for the ADC data acquisition thread"
21	default 400
22	depends on ADC_AD7124 && ADC_ASYNC
23	help
24	  Size of the stack used for the internal data acquisition
25	  thread.
26