1# DAC configuration options 2 3# Copyright (c) 2021 Laird Connectivity 4# 5# SPDX-License-Identifier: Apache-2.0 6 7config DAC_MCP4725 8 bool "Microchip MCP4725 DAC driver" 9 default y 10 select I2C 11 depends on DT_HAS_MICROCHIP_MCP4725_ENABLED 12 help 13 Enable the driver for the Microchip MCP4725. 14 15if DAC_MCP4725 16 17config DAC_MCP4725_INIT_PRIORITY 18 int "Init priority" 19 default 80 20 help 21 Microchip MCP4725 DAC device driver initialization priority. 22 23endif # DAC_MCP4725 24