1# Config options for mqtt_publisher sample application 2 3# Copyright (c) 2020 Intel Corporation 4# SPDX-License-Identifier: Apache-2.0 5 6mainmenu "Networking mqtt_publisher sample application" 7 8config NET_SAMPLE_APP_MAX_ITERATIONS 9 int "Number of times to Publish sample MQTT messages" 10 default 500 11 help 12 Send sample MQTT messages this many times in a MQTT connection 13 before exiting. A value of zero means that the messages are sent 14 forever. 15 16config NET_SAMPLE_APP_MAX_CONNECTIONS 17 int "Number of times to connect to the MQTT server" 18 default 0 19 help 20 Number of times to connect to the MQTT server. With each connection 21 send NET_SAMPLE_APP_MAX_ITERATIONS amount of MQTT sample messages. 22 A value of zero means to continue forever. 23 24source "Kconfig.zephyr" 25