1# Configuration options for MQTT-SN sample 2 3# Copyright (c) 2022 René Beckmann 4# SPDX-License-Identifier: Apache-2.0 5 6mainmenu "MQTT-SN sample application" 7 8config NET_SAMPLE_MQTT_SN_STATIC_GATEWAY 9 bool "Whether to statically define the Gateway. Will use Search procedure if False." 10 11config NET_SAMPLE_MQTT_SN_GATEWAY_IP 12 string "IP of the MQTT-SN gateway. Only used if NET_SAMPLE_MQTT_SN_STATIC_GATEWAY=n." 13 depends on NET_SAMPLE_MQTT_SN_STATIC_GATEWAY 14 15config NET_SAMPLE_MQTT_SN_GATEWAY_PORT 16 int "Port of the MQTT-SN gateway" 17 18config NET_SAMPLE_MQTT_SN_BROADCAST_IP 19 string "IP of the Broadcast address" 20 21config NET_SAMPLE_MQTT_SN_BROADCAST_PORT 22 int "Port of the MQTT-SN broadcast" 23 24config NET_SAMPLE_MQTT_SN_BUFFER_SIZE 25 int "Size of the TX and RX buffers" 26 default 255 27 28source "Kconfig.zephyr" 29