-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
47 lines (35 loc) · 1.14 KB
/
Kconfig
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
#
# Copyright (c) 2022 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
mainmenu "Matter nRF Connect Light Bulb Example Application"
# Sample configuration used for Thread networking
if NET_L2_OPENTHREAD
choice OPENTHREAD_NORDIC_LIBRARY_CONFIGURATION
default OPENTHREAD_NORDIC_LIBRARY_FTD
endchoice
choice OPENTHREAD_DEVICE_TYPE
default OPENTHREAD_FTD
endchoice
endif # NET_L2_OPENTHREAD
menu "Memfault UDP Sample Settings"
config UDP_DATA_UPLOAD_SIZE_BYTES
int "Number of bytes transmitted to the server"
default 10
config UDP_DATA_UPLOAD_FREQUENCY_SECONDS
int "How often data is transmitted to the server"
default 900
config UDP_SERVER_ADDRESS_STATIC
string "UDP server IP address"
default "8.8.8.8"
config UDP_SERVER_PORT
int "UDP server port number"
default "2469"
config UDP_DATA_UPLOAD_VERSION_PREFIX
string "A version prefix to identify the binary layout of UDP messages"
default "v0"
endmenu
source "${ZEPHYR_BASE}/../modules/lib/matter/config/nrfconnect/chip-module/Kconfig.features"
source "${ZEPHYR_BASE}/../modules/lib/matter/config/nrfconnect/chip-module/Kconfig.defaults"
source "Kconfig.zephyr"