1# ADS1X4S0X GPIO configuration options
2
3# Copyright (c) 2023 SILA Embedded Solutions GmbH
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig GPIO_ADS1X4S0X
7	bool "ADS1X4S0X GPIO driver"
8	default y
9	depends on DT_HAS_TI_ADS1X4S0X_GPIO_ENABLED
10	depends on ADC_ADS1X4S0X_GPIO
11	help
12	  Enable GPIO driver for ADS1X4S0X.
13
14	  The ADS1X4S0X is a multi-channel analog frontend (AFE).
15
16	  The GPIO port of the ADS1X4S0X (GPIO0 to GPIO3) is exposed as a
17	  GPIO controller driver with read/write support.
18
19config GPIO_ADS1X4S0X_INIT_PRIORITY
20	int "Driver init priority"
21	default 99
22	depends on GPIO_ADS1X4S0X
23	help
24	  Device driver initialization priority. This driver must be
25	  initialized after the ADS1X4S0X ADC driver.
26