mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
tests only supports tests in non-encrypted mode. when we open tests compilation in other modes, there will be many compilation warning with mismatched parameter types, and it will not run correctly. Signed-off-by: zhanghongyu <zhanghongyu@xiaomi.com>
51 lines
894 B
Text
51 lines
894 B
Text
#
|
|
# 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
|
|
|
|
config NETUTILS_MQTTC_TEST
|
|
tristate "Enable MQTT-C test"
|
|
depends on !NETUTILS_MQTTC_WITH_MBEDTLS
|
|
default n
|
|
|
|
if NETUTILS_MQTTC_EXAMPLE
|
|
|
|
config NETUTILS_MQTTC_EXAMPLE_STACKSIZE
|
|
int "Task's stack size"
|
|
default 8192
|
|
|
|
endif
|
|
|
|
if NETUTILS_MQTTC_TEST
|
|
|
|
config NETUTILS_MQTTC_TEST_STACKSIZE
|
|
int "Task's stack size"
|
|
default 8192
|
|
|
|
endif
|
|
|
|
config NETUTILS_MQTTC_WITH_MBEDTLS
|
|
bool "Enable MQTT-C with mbedtls"
|
|
default n
|
|
depends on CRYPTO_MBEDTLS
|
|
select DEV_URANDOM
|
|
|
|
config NETUTILS_MQTTC_VERSION
|
|
string "MQTT-C Version"
|
|
default "1.1.5"
|
|
|
|
endif
|