956b935511
The mqttc demo under example path can not support mbedtls api. Because of the MQTT-C source code already contains many types of link examples, so we added the corresponding makefile to support mbedtls mqttc connections publisher and posix mqttc connections publisher and subscriber. Signed-off-by: zhanghongyu <zhanghongyu@xiaomi.com>
37 lines
628 B
Plaintext
37 lines
628 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config NETUTILS_MQTTC
|
|
tristate "Enable MQTT-C"
|
|
default n
|
|
---help---
|
|
Enable MQTT-C
|
|
|
|
if NETUTILS_MQTTC
|
|
|
|
config NETUTILS_MQTTC_EXAMPLE
|
|
tristate "Enable MQTT-C example"
|
|
default n
|
|
---help---
|
|
Enable MQTT-C example
|
|
|
|
if NETUTILS_MQTTC_EXAMPLE
|
|
|
|
config NETUTILS_MQTTC_EXAMPLE_STACKSIZE
|
|
int "Task's stack size"
|
|
default 8192
|
|
|
|
endif
|
|
|
|
config NETUTILS_MQTTC_WITH_MBEDTLS
|
|
bool "Enable MQTT-C with mbedtls"
|
|
default n
|
|
|
|
config NETUTILS_MQTTC_VERSION
|
|
string "MQTT-C Version"
|
|
default "1.1.5"
|
|
|
|
endif
|