-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
47 lines (33 loc) · 1.1 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) 2020 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-BSD-5-Clause-Nordic
#
menu "IoT Publisher Sample Settings"
rsource "src/mqtt_backend/Kconfig"
rsource "src/coap_backend/Kconfig"
config CLOUD_BACKEND
string "String that selects the cloud backend to be used"
default "NRF_CLOUD"
config CLOUD_MESSAGE
string "Custom message published periodically to cloud"
default "{\"tmp\":{\"val\":23,\"ts\":735181200}}"
config CLOUD_MESSAGE_PUBLICATION_INTERVAL
int "How often the custom message should be published to cloud, in seconds"
default 10
choice
prompt "Cloud Publication Trigger"
default CLOUD_PUBLICATION_BUTTON_PRESS
config CLOUD_PUBLICATION_BUTTON_PRESS
bool "Trigger publication to cloud upon a button press"
config CLOUD_PUBLICATION_SEQUENTIAL
bool "Sequential publication to cloud set by the CONFIG_MESSAGE_PUBLICATION_INTERVAL option"
endchoice
config POWER_SAVING_MODE_ENABLE
bool "Request PSM from cellular network"
config LTE_RAI_NO_RESPONSE
bool "Request Release assistance indication"
endmenu
menu "Zephyr Kernel"
source "$ZEPHYR_BASE/Kconfig.zephyr"
endmenu