-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathKconfig
More file actions
65 lines (49 loc) · 1.36 KB
/
Kconfig
File metadata and controls
65 lines (49 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#
# Copyright (c) 2024-2026 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
if OPENTHREAD
choice OPENTHREAD_NORDIC_LIBRARY_CONFIGURATION
default OPENTHREAD_NORDIC_LIBRARY_MTD
endchoice
choice OPENTHREAD_DEVICE_TYPE
default OPENTHREAD_MTD
endchoice
config CHIP_ENABLE_ICD_SUPPORT
default y
endif # OPENTHREAD
config MPSL_THREAD_COOP_PRIO
default 8
if CHIP
source "$(ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR)/config/nrfconnect/chip-module/Kconfig.features"
source "$(ZEPHYR_CONNECTEDHOMEIP_MODULE_DIR)/config/nrfconnect/chip-module/Kconfig.defaults"
source "$(ZEPHYR_NRF_MODULE_DIR)/samples/matter/common/src/Kconfig"
endif
menu "Zephyr Kernel"
source "Kconfig.zephyr"
endmenu
module = NUS_CMD
module-str = NUS command
source "${ZEPHYR_BASE}/subsys/logging/Kconfig.template.log_config"
config LIGHT_SWITCH_CONFIGURE_TX_POWER
bool "Configure TX power"
default y
help
Enable this option to configure TX power for the sample.
config LIGHT_SWITCH_TX_POWER
int "TX power"
depends on LIGHT_SWITCH_CONFIGURE_TX_POWER
default 0
help
TX power level in dBm.
config LIGHT_SWITCH_LOW_POWER
bool "Low power mode"
default n
help
Enable low power mode for the Light Switch sample.
This enables sleepy behavior and disables LEDs for power savings.
if CONFIG_ZIGBEE_BT_DFU
config BT_DEVICE_NAME
default "Zigbee_Switch"
endif # CONFIG_ZIGBEE_BT_DFU