1# Copyright 2021 Grinn 2# 3# SPDX-License-Identifier: Apache-2.0 4 5config DAC_MCP4728 6 bool "Microchip MCP4728 DAC driver" 7 default y 8 select I2C 9 depends on DT_HAS_MICROCHIP_MCP4728_ENABLED 10 help 11 Enable driver for the Microchip MCP4728. 12 13if DAC_MCP4728 14 15config DAC_MCP4728_INIT_PRIORITY 16 int "Init priority" 17 default 80 18 help 19 Microchip MCP4728 device driver initialization priority. 20 21endif # DAC_MCP4728 22