1# DAC configuration options
2
3# Copyright (C) 2023 Marcus Folkesson <marcus.folkesson@gmail.com>
4#
5# SPDX-License-Identifier: Apache-2.0
6
7config DAC_LTC166X
8	bool "Linear Technology LTC166X DAC"
9	default y
10	select SPI
11	depends on DT_HAS_LLTC_LTC1660_ENABLED || DT_HAS_LLTC_LTC1665_ENABLED
12	help
13	  Enable the driver for the Linear Technology LTC166X DAC
14
15if DAC_LTC166X
16
17config DAC_LTC166X_INIT_PRIORITY
18	int "Init priority"
19	default 80
20	help
21	  Linear Technology LTC166X DAC device driver initialization priority.
22
23endif # DAC_LTC166X
24