2f6038d799
With the recent changes in how Kconfig options are enabled using DT helpers, using select leads to a better/more scalable pattern. Each driver Kconfig option is expected to select its dependencies now. Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
11 lines
232 B
Plaintext
11 lines
232 B
Plaintext
# Copyright (c) 2021 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config EXAMPLESENSOR
|
|
bool "Example sensor"
|
|
default y
|
|
depends on DT_HAS_ZEPHYR_EXAMPLESENSOR_ENABLED
|
|
select GPIO
|
|
help
|
|
Enable example sensor
|