forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig
More file actions
45 lines (33 loc) · 1.06 KB
/
Kconfig
File metadata and controls
45 lines (33 loc) · 1.06 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
#
# Copyright (c) 2021 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
mainmenu "Matter weather station application"
config AVERAGE_CURRENT_CONSUMPTION
int "Average device current consumption in microamperes"
default 0
help
The predicted average current consumption of the Matter weather station
device, used to estimate the remaining battery time.
# Application configuration used for Thread networking
if OPENTHREAD
choice OPENTHREAD_NORDIC_LIBRARY_CONFIGURATION
default OPENTHREAD_NORDIC_LIBRARY_MTD
endchoice
choice OPENTHREAD_DEVICE_TYPE
default OPENTHREAD_MTD
endchoice
config IEEE802154_NRF5_RX_STACK_SIZE
default 8192
config CHIP_ENABLE_ICD_SUPPORT
default y
endif # OPENTHREAD
if CHIP_WIFI
config NRF_WIFI_LOW_POWER
default y
endif # CHIP_WIFI
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"
source "Kconfig.zephyr"