1# DAC configuration options 2 3# Copyright (c) 2020 Libre Solar Technologies GmbH 4# SPDX-License-Identifier: Apache-2.0 5 6# 7# DAC options 8# 9menuconfig DAC 10 bool "Digital-to-Analog Converter (DAC) drivers" 11 help 12 Enable DAC (Digital to Analog Converter) driver configuration. 13 14if DAC 15 16module = DAC 17module-str = DAC 18source "subsys/logging/Kconfig.template.log_config" 19 20config DAC_SHELL 21 bool "DAC shell" 22 depends on SHELL 23 help 24 Enable DAC related shell commands. 25 26config DAC_INIT_PRIORITY 27 int "DAC init priority" 28 default KERNEL_INIT_PRIORITY_DEVICE 29 help 30 DAC driver device initialization priority. 31 32source "drivers/dac/Kconfig.mcux" 33 34source "drivers/dac/Kconfig.stm32" 35 36source "drivers/dac/Kconfig.sam" 37 38source "drivers/dac/Kconfig.sam0" 39 40source "drivers/dac/Kconfig.dacx0501" 41 42source "drivers/dac/Kconfig.dacx0508" 43 44source "drivers/dac/Kconfig.dacx3608" 45 46source "drivers/dac/Kconfig.ltc166x" 47 48source "drivers/dac/Kconfig.mcp4725" 49 50source "drivers/dac/Kconfig.mcp4728" 51 52source "drivers/dac/Kconfig.gd32" 53 54source "drivers/dac/Kconfig.esp32" 55 56source "drivers/dac/Kconfig.ad56xx" 57 58source "drivers/dac/Kconfig.ad559x" 59 60source "drivers/dac/Kconfig.ad569x" 61 62source "drivers/dac/Kconfig.test" 63 64endif # DAC 65