zephyr/drivers/dac/Kconfig
Anas Nashif ee985d81aa shell: enable modules by default if shell is enabled
If shell is enabled then enable all sub-shells if their dependencies are
satisfied. This was done for some modules and subsystems but was not
consistent.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2020-06-24 21:37:12 -04:00

32 lines
535 B
Plaintext

# 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"
config DAC_SHELL
bool "Enable DAC shell"
default y
depends on SHELL
help
Enable DAC related shell commands.
source "drivers/dac/Kconfig.mcux"
source "drivers/dac/Kconfig.stm32"
endif # DAC