基本信息
源码名称:交叉编译paho.mqtt.embedded-c库
源码大小:0.71M
文件格式:.zip
开发语言:C/C++
更新时间:2022-08-24
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
.
├── paho.mqtt.embedded-c
│ ├── CMakeLists.txt
│ ├── CONTRIBUTING.md
│ ├── Debug
│ │ ├── makefile
│ │ ├── objects.mk
│ │ ├── sources.mk
│ │ └── src
│ │ ├── MQTTDeserializeConnect.d
│ │ └── subdir.mk
│ ├── MQTTClient
│ │ ├── CMakeLists.txt
│ │ ├── samples
│ │ │ ├── CMakeLists.txt
│ │ │ ├── arduino
│ │ │ │ └── Hello
│ │ │ │ └── Hello.ino
│ │ │ └── linux
│ │ │ ├── CMakeLists.txt
│ │ │ ├── build.sh
│ │ │ ├── hello.cpp
│ │ │ ├── main.cpp
│ │ │ └── stdoutsub.cpp
│ │ ├── src
│ │ │ ├── FP.h
│ │ │ ├── MQTTClient.h
│ │ │ ├── MQTTLogging.h
│ │ │ ├── arduino
│ │ │ │ ├── Countdown.h
│ │ │ │ ├── IPStack.h
│ │ │ │ └── WifiIPStack.h
│ │ │ ├── linux
│ │ │ │ └── linux.cpp
│ │ │ └── mbed
│ │ │ ├── MQTTEthernet.h
│ │ │ ├── MQTTSocket.h
│ │ │ └── MQTTmbed.h
│ │ └── test
│ │ ├── CMakeLists.txt
│ │ └── test1.cpp
│ ├── MQTTClient-C
│ │ ├── CMakeLists.txt
│ │ ├── samples
│ │ │ ├── CMakeLists.txt
│ │ │ ├── FreeRTOS
│ │ │ │ └── MQTTEcho.c
│ │ │ └── linux
│ │ │ ├── CMakeLists.txt
│ │ │ ├── build.sh
│ │ │ └── stdoutsub.c
│ │ ├── src
│ │ │ ├── CMakeLists.txt
│ │ │ ├── FreeRTOS
│ │ │ │ ├── MQTTFreeRTOS.c
│ │ │ │ └── MQTTFreeRTOS.h
│ │ │ ├── MQTTClient.c
│ │ │ ├── MQTTClient.h
│ │ │ ├── cc3200
│ │ │ │ ├── MQTTCC3200.c
│ │ │ │ └── MQTTCC3200.h
│ │ │ └── linux
│ │ │ ├── MQTTLinux.c
│ │ │ └── MQTTLinux.h
│ │ └── test
│ │ ├── CMakeLists.txt
│ │ └── test1.c
│ ├── MQTTPacket
│ │ ├── CMakeLists.txt
│ │ ├── samples
│ │ │ ├── CMakeLists.txt
│ │ │ ├── baremetalserial
│ │ │ │ ├── build
│ │ │ │ ├── ping_nb.c
│ │ │ │ ├── pub0sub1_nb.c
│ │ │ │ ├── transport.c
│ │ │ │ └── transport.h
│ │ │ ├── build
│ │ │ ├── null.c
│ │ │ ├── ping.c
│ │ │ ├── ping_nb.c
│ │ │ ├── pub0sub1.c
│ │ │ ├── pub0sub1_nb.c
│ │ │ ├── qos0pub.c
│ │ │ ├── transport.c
│ │ │ └── transport.h
│ │ ├── src
│ │ │ ├── CMakeLists.txt
│ │ │ ├── MQTTConnect.h
│ │ │ ├── MQTTConnectClient.c
│ │ │ ├── MQTTConnectServer.c
│ │ │ ├── MQTTDeserializePublish.c
│ │ │ ├── MQTTFormat.c
│ │ │ ├── MQTTFormat.h
│ │ │ ├── MQTTPacket.c
│ │ │ ├── MQTTPacket.h
│ │ │ ├── MQTTPublish.h
│ │ │ ├── MQTTSerializePublish.c
│ │ │ ├── MQTTSubscribe.h
│ │ │ ├── MQTTSubscribeClient.c
│ │ │ ├── MQTTSubscribeServer.c
│ │ │ ├── MQTTUnsubscribe.h
│ │ │ ├── MQTTUnsubscribeClient.c
│ │ │ ├── MQTTUnsubscribeServer.c
│ │ │ └── StackTrace.h
│ │ └── test
│ │ ├── CMakeLists.txt
│ │ ├── build_test
│ │ └── test1.c
│ ├── Makefile
│ ├── README.md
│ ├── about.html
│ ├── doc
│ │ ├── DoxyfileMQTTClient-C.in
│ │ ├── DoxyfileMQTTClient.in
│ │ ├── DoxyfileMQTTPacket.in
│ │ └── pahologo.png
│ ├── edl-v10
│ ├── epl-v10
│ ├── library.properties
│ ├── notice.html
│ ├── test
│ │ ├── MQTTV3112.py
│ │ └── mqttsas2.py
│ ├── travis-build.sh
│ ├── travis-env-vars
│ └── travis-install.sh
└── 交叉编译paho.mqtt.embedded-c库.zip
29 directories, 98 files
交叉编译paho.mqtt.embedded-c库
paho.mqtt C语言的实现
.
├── paho.mqtt.embedded-c
│ ├── CMakeLists.txt
│ ├── CONTRIBUTING.md
│ ├── Debug
│ │ ├── makefile
│ │ ├── objects.mk
│ │ ├── sources.mk
│ │ └── src
│ │ ├── MQTTDeserializeConnect.d
│ │ └── subdir.mk
│ ├── MQTTClient
│ │ ├── CMakeLists.txt
│ │ ├── samples
│ │ │ ├── CMakeLists.txt
│ │ │ ├── arduino
│ │ │ │ └── Hello
│ │ │ │ └── Hello.ino
│ │ │ └── linux
│ │ │ ├── CMakeLists.txt
│ │ │ ├── build.sh
│ │ │ ├── hello.cpp
│ │ │ ├── main.cpp
│ │ │ └── stdoutsub.cpp
│ │ ├── src
│ │ │ ├── FP.h
│ │ │ ├── MQTTClient.h
│ │ │ ├── MQTTLogging.h
│ │ │ ├── arduino
│ │ │ │ ├── Countdown.h
│ │ │ │ ├── IPStack.h
│ │ │ │ └── WifiIPStack.h
│ │ │ ├── linux
│ │ │ │ └── linux.cpp
│ │ │ └── mbed
│ │ │ ├── MQTTEthernet.h
│ │ │ ├── MQTTSocket.h
│ │ │ └── MQTTmbed.h
│ │ └── test
│ │ ├── CMakeLists.txt
│ │ └── test1.cpp
│ ├── MQTTClient-C
│ │ ├── CMakeLists.txt
│ │ ├── samples
│ │ │ ├── CMakeLists.txt
│ │ │ ├── FreeRTOS
│ │ │ │ └── MQTTEcho.c
│ │ │ └── linux
│ │ │ ├── CMakeLists.txt
│ │ │ ├── build.sh
│ │ │ └── stdoutsub.c
│ │ ├── src
│ │ │ ├── CMakeLists.txt
│ │ │ ├── FreeRTOS
│ │ │ │ ├── MQTTFreeRTOS.c
│ │ │ │ └── MQTTFreeRTOS.h
│ │ │ ├── MQTTClient.c
│ │ │ ├── MQTTClient.h
│ │ │ ├── cc3200
│ │ │ │ ├── MQTTCC3200.c
│ │ │ │ └── MQTTCC3200.h
│ │ │ └── linux
│ │ │ ├── MQTTLinux.c
│ │ │ └── MQTTLinux.h
│ │ └── test
│ │ ├── CMakeLists.txt
│ │ └── test1.c
│ ├── MQTTPacket
│ │ ├── CMakeLists.txt
│ │ ├── samples
│ │ │ ├── CMakeLists.txt
│ │ │ ├── baremetalserial
│ │ │ │ ├── build
│ │ │ │ ├── ping_nb.c
│ │ │ │ ├── pub0sub1_nb.c
│ │ │ │ ├── transport.c
│ │ │ │ └── transport.h
│ │ │ ├── build
│ │ │ ├── null.c
│ │ │ ├── ping.c
│ │ │ ├── ping_nb.c
│ │ │ ├── pub0sub1.c
│ │ │ ├── pub0sub1_nb.c
│ │ │ ├── qos0pub.c
│ │ │ ├── transport.c
│ │ │ └── transport.h
│ │ ├── src
│ │ │ ├── CMakeLists.txt
│ │ │ ├── MQTTConnect.h
│ │ │ ├── MQTTConnectClient.c
│ │ │ ├── MQTTConnectServer.c
│ │ │ ├── MQTTDeserializePublish.c
│ │ │ ├── MQTTFormat.c
│ │ │ ├── MQTTFormat.h
│ │ │ ├── MQTTPacket.c
│ │ │ ├── MQTTPacket.h
│ │ │ ├── MQTTPublish.h
│ │ │ ├── MQTTSerializePublish.c
│ │ │ ├── MQTTSubscribe.h
│ │ │ ├── MQTTSubscribeClient.c
│ │ │ ├── MQTTSubscribeServer.c
│ │ │ ├── MQTTUnsubscribe.h
│ │ │ ├── MQTTUnsubscribeClient.c
│ │ │ ├── MQTTUnsubscribeServer.c
│ │ │ └── StackTrace.h
│ │ └── test
│ │ ├── CMakeLists.txt
│ │ ├── build_test
│ │ └── test1.c
│ ├── Makefile
│ ├── README.md
│ ├── about.html
│ ├── doc
│ │ ├── DoxyfileMQTTClient-C.in
│ │ ├── DoxyfileMQTTClient.in
│ │ ├── DoxyfileMQTTPacket.in
│ │ └── pahologo.png
│ ├── edl-v10
│ ├── epl-v10
│ ├── library.properties
│ ├── notice.html
│ ├── test
│ │ ├── MQTTV3112.py
│ │ └── mqttsas2.py
│ ├── travis-build.sh
│ ├── travis-env-vars
│ └── travis-install.sh
└── 交叉编译paho.mqtt.embedded-c库.zip
29 directories, 98 files