2021-03-27 19:25:03 +01:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
config EXAMPLES_MQTTC
|
|
|
|
tristate "Enable MQTT-C Example"
|
|
|
|
default n
|
2023-08-28 13:40:57 +02:00
|
|
|
depends on NETUTILS_MQTTC && !NETUTILS_MQTTC_WITH_MBEDTLS
|
2021-03-27 19:25:03 +01:00
|
|
|
---help---
|
|
|
|
Enable a simple MQTT-C publisher example
|
|
|
|
|
|
|
|
if EXAMPLES_MQTTC
|
|
|
|
|
|
|
|
config EXAMPLES_MQTTC_PROGNAME
|
|
|
|
string "Program name"
|
|
|
|
default "mqttc_pub"
|
|
|
|
|
|
|
|
config EXAMPLES_MQTTC_STACKSIZE
|
|
|
|
int "Task's stack size"
|
|
|
|
default 8192
|
|
|
|
|
|
|
|
config EXAMPLES_MQTTC_TXSIZE
|
|
|
|
int "TX Buffer size"
|
|
|
|
default 256
|
|
|
|
|
|
|
|
config EXAMPLES_MQTTC_RXSIZE
|
|
|
|
int "RX Buffer size"
|
|
|
|
default 256
|
|
|
|
|
|
|
|
endif
|