1# DAC configuration options
2
3# Copyright (c) 2023 Google, LLC.
4#
5# SPDX-License-Identifier: Apache-2.0
6
7config DAC_DACX0501
8	bool "TI DACx0501 DAC driver"
9	default y
10	depends on DT_HAS_TI_DACX0501_ENABLED
11	select I2C
12	help
13	  Enable the driver for the TI DACx0501.
14
15if DAC_DACX0501
16
17config DAC_DACX0501_INIT_PRIORITY
18	int "Init priority"
19	default 80
20	help
21	  TI DACx0501 DAC device driver initialization priority. Must be greater than I2C_INIT_PRIORITY.
22
23endif # DAC_DACX0501
24