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 default y 23 depends on SHELL 24 help 25 Enable DAC related shell commands. 26 27config DAC_INIT_PRIORITY 28 int "DAC init priority" 29 default KERNEL_INIT_PRIORITY_DEVICE 30 help 31 DAC driver device initialization priority. 32 33source "drivers/dac/Kconfig.mcux" 34 35source "drivers/dac/Kconfig.stm32" 36 37source "drivers/dac/Kconfig.sam" 38 39source "drivers/dac/Kconfig.sam0" 40 41source "drivers/dac/Kconfig.dacx0508" 42 43source "drivers/dac/Kconfig.dacx3608" 44 45source "drivers/dac/Kconfig.ltc166x" 46 47source "drivers/dac/Kconfig.mcp4725" 48 49source "drivers/dac/Kconfig.mcp4728" 50 51source "drivers/dac/Kconfig.gd32" 52 53source "drivers/dac/Kconfig.esp32" 54 55source "drivers/dac/Kconfig.ad56xx" 56 57endif # DAC 58