18 lines
327 B
Plaintext
18 lines
327 B
Plaintext
|
# Copyright (c) 2023 Intel Corporation
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
config SENSING
|
||
|
bool "Sensing Subsystem"
|
||
|
default y
|
||
|
depends on DT_HAS_ZEPHYR_SENSING_ENABLED
|
||
|
help
|
||
|
Enable Sensing Subsystem.
|
||
|
|
||
|
if SENSING
|
||
|
|
||
|
module = SENSING
|
||
|
module-str = sensing
|
||
|
source "subsys/logging/Kconfig.template.log_config"
|
||
|
|
||
|
endif # SENSING
|