2020-01-10 17:10:12 +08:00
|
|
|
# DAC configuration options
|
|
|
|
|
|
|
|
# Copyright (c) 2020 Libre Solar Technologies GmbH
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
#
|
|
|
|
# DAC options
|
|
|
|
#
|
|
|
|
menuconfig DAC
|
|
|
|
bool "DAC drivers"
|
|
|
|
help
|
|
|
|
Enable DAC (Digital to Analog Converter) driver configuration.
|
|
|
|
|
|
|
|
if DAC
|
|
|
|
|
|
|
|
module = DAC
|
|
|
|
module-str = DAC
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
|
2020-02-17 03:55:58 +08:00
|
|
|
config DAC_SHELL
|
|
|
|
bool "Enable DAC shell"
|
2020-05-28 22:34:29 +08:00
|
|
|
default y
|
2020-02-17 03:55:58 +08:00
|
|
|
depends on SHELL
|
|
|
|
help
|
|
|
|
Enable DAC related shell commands.
|
|
|
|
|
2021-10-26 08:13:48 +08:00
|
|
|
config DAC_INIT_PRIORITY
|
|
|
|
int "DAC init priority"
|
|
|
|
default KERNEL_INIT_PRIORITY_DEVICE
|
|
|
|
help
|
|
|
|
DAC driver device initialization priority.
|
|
|
|
|
2020-02-16 20:58:28 +08:00
|
|
|
source "drivers/dac/Kconfig.mcux"
|
|
|
|
|
2020-01-10 17:20:57 +08:00
|
|
|
source "drivers/dac/Kconfig.stm32"
|
|
|
|
|
2021-08-13 06:11:17 +08:00
|
|
|
source "drivers/dac/Kconfig.sam"
|
|
|
|
|
2020-07-04 21:19:59 +08:00
|
|
|
source "drivers/dac/Kconfig.sam0"
|
|
|
|
|
2020-06-04 11:24:40 +08:00
|
|
|
source "drivers/dac/Kconfig.dacx0508"
|
|
|
|
|
2020-12-17 04:57:28 +08:00
|
|
|
source "drivers/dac/Kconfig.dacx3608"
|
|
|
|
|
2021-03-19 01:08:54 +08:00
|
|
|
source "drivers/dac/Kconfig.mcp4725"
|
|
|
|
|
2020-01-10 17:10:12 +08:00
|
|
|
endif # DAC
|