zephyr/samples/net/mqtt_sn_publisher/Kconfig
René Beckmann a507186d12 samples: net: mqtt-sn: Add MQTT-SN publisher sample
This sample demonstrates the usage of the MQTT-SN library over UDP.
It connects to a gateway, publishes to the topic "/uptime" and also
subscribes to "/number".

Signed-off-by: René Beckmann <rene.beckmann@grandcentrix.net>
2022-11-09 10:43:00 +01:00

19 lines
420 B
Plaintext

# Configuration options for MQTT-SN sample
# Copyright (c) 2022 René Beckmann
# SPDX-License-Identifier: Apache-2.0
mainmenu "MQTT-SN sample application"
config NET_SAMPLE_MQTT_SN_GATEWAY_IP
string "IP of the MQTT-SN gateway"
config NET_SAMPLE_MQTT_SN_GATEWAY_PORT
int "Port of the MQTT-SN gateway"
config NET_SAMPLE_MQTT_SN_BUFFER_SIZE
int "Size of the TX and RX buffers"
default 255
source "Kconfig.zephyr"