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