-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
70 lines (55 loc) · 1.47 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#
# Copyright (c) 2018 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-BSD-5-Clause-Nordic
#
menu "HTTPS client sample"
config SAMPLE_TFM_MBEDTLS
bool "Use TF-M and MbedTLS"
help
Use TF-M and MbedTLS in this sample instead of using
the offloaded TLS stack in the modem.
config SEC_TAG
int "Security tag to use for the connection"
default 1
config PROVISION_CERTIFICATES
bool "Provision of certificate"
help
Enable run-time provisioning of certificates from the
certificates header file selected by using CERTIFICATES_FILE
# or
config CERTIFICATES_FILE
string "Certificates to use"
depends on PROVISION_CERTIFICATES
default "certificates.h"
config PEER_VERIFY
int "Peer verify parameter for mqtt_client"
default 1
help
Set to 0 for VERIFY_NONE, 1 for VERIFY_OPTIONAL, and 2 for VERIFY_REQUIRED.
config MQTT_PUB_TOPIC
string "MQTT publish topic"
default "my/publish/topic"
config MQTT_SUB_TOPIC
string "MQTT subscribe topic"
default "my/subscribe/topic"
config MQTT_CLIENT_ID
string "MQTT Client ID"
default "my-client-id"
config MQTT_BROKER_HOSTNAME
string "MQTT broker hostname"
default "mqtt.eclipse.org"
config MQTT_BROKER_PORT
int "MQTT broker port"
default 1883
config MQTT_MESSAGE_BUFFER_SIZE
int "MQTT message buffer size"
default 4098
config MQTT_PAYLOAD_BUFFER_SIZE
int "MQTT payload buffer size"
default 4098
endmenu
menu "Zephyr Kernel"
source "$ZEPHYR_BASE/Kconfig.zephyr"
# source "Kconfig.zephyr"
endmenu