mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-12-10 07:14:36 +01:00
Add pico_lwip_mqtt library (#948)
This commit is contained in:
parent
2ebba462ac
commit
150be75aa4
2 changed files with 7 additions and 1 deletions
|
|
@ -223,7 +223,7 @@ if (EXISTS ${PICO_LWIP_PATH}/${LWIP_TEST_PATH})
|
|||
${PICO_LWIP_PATH}/src/apps/tftp/tftp.c
|
||||
)
|
||||
|
||||
# MQTT client files
|
||||
# Mbed TLS files
|
||||
add_library(pico_lwip_mbedtls INTERFACE)
|
||||
target_sources(pico_lwip_mbedtls INTERFACE
|
||||
${PICO_LWIP_PATH}/src/apps/altcp_tls/altcp_tls_mbedtls.c
|
||||
|
|
@ -231,6 +231,11 @@ if (EXISTS ${PICO_LWIP_PATH}/${LWIP_TEST_PATH})
|
|||
${PICO_LWIP_PATH}/src/apps/snmp/snmpv3_mbedtls.c
|
||||
)
|
||||
|
||||
# MQTT client files
|
||||
add_library(pico_lwip_mqtt INTERFACE)
|
||||
target_sources(pico_lwip_mqtt INTERFACE
|
||||
${PICO_LWIP_PATH}/src/apps/mqtt/mqtt.c
|
||||
)
|
||||
|
||||
# All LWIP files without apps
|
||||
add_library(pico_lwip INTERFACE)
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@
|
|||
* * \c \b pico_lwip_netbios -
|
||||
* * \c \b pico_lwip_tftp -
|
||||
* * \c \b pico_lwip_mbedtls -
|
||||
* * \c \b pico_lwip_mqtt -
|
||||
*
|
||||
* The SDK Provides a common set of functionality in \c \p pico_lwip which aggregates:
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue