1# Copyright (c) 2023 Google LLC
2#
3# SPDX-License-Identifier: Apache-2.0
4
5config ADC_ADS7052
6	bool "Texas instruments ADS7052 SPI"
7	default y
8	depends on DT_HAS_TI_ADS7052_ENABLED
9	select SPI
10	select ADC_CONFIGURABLE_INPUTS
11	help
12	  Enable the driver implementation for the ADS7052
13
14if ADC_ADS7052
15
16config ADC_ADS7052_INIT_PRIORITY
17	int "ADS7052 init priority"
18	default 80
19	help
20	  ADS7052 device initialization priority must come
21	  after SPI initialization
22
23config ADC_ADS7052_ACQUISITION_THREAD_STACK_SIZE
24	int "Stack size for the ADC data acquisition thread"
25	default 512
26	help
27	  Size of the stack used for the internal data acquisition
28	  thread.
29
30config ADC_ADS7052_ACQUISITION_THREAD_PRIO
31	int "Priority for the ADC data acquisition thread"
32	default 0
33	help
34	  Priority level for the internal ADC data acquisition thread.
35
36endif # ADC_ADS7052
37