-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
43 lines (32 loc) · 883 Bytes
/
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
#
# Copyright (c) 2020 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
menu "UDP Sample Settings"
config UDP_DATA_UPLOAD_SIZE_BYTES
int "Number of bytes transmitted to the server"
default 120
config UDP_DATA_UPLOAD_FREQUENCY_SECONDS
int "How often data is transmitted to the server"
default 300
config UDP_SERVER_ADDRESS_STATIC
string "UDP server IP address"
default "192.168.1.2"
config UDP_SERVER_PORT
int "UDP server port number"
default "1234"
config UDP_PSM_ENABLE
bool "Enable LTE Power Saving Mode"
default y
config UDP_EDRX_ENABLE
bool "Enable LTE enhanced Discontinuous Reception"
config UDP_RAI_ENABLE
bool "Enable LTE Release Assistance Indication"
endmenu
module = UDP
module-str = UDP sample
source "${ZEPHYR_BASE}/subsys/logging/Kconfig.template.log_config"
menu "Zephyr Kernel"
source "Kconfig.zephyr"
endmenu