From 703eb440d860305510dc491d60c622464d18f102 Mon Sep 17 00:00:00 2001 From: heyuanjie87 Date: Wed, 22 Jul 2015 21:52:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=BC=96=E8=AF=91=E8=AF=B4?= =?UTF-8?q?=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/external/paho-mqtt/README_CN.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 components/external/paho-mqtt/README_CN.md diff --git a/components/external/paho-mqtt/README_CN.md b/components/external/paho-mqtt/README_CN.md new file mode 100644 index 0000000000..5da55bfe3d --- /dev/null +++ b/components/external/paho-mqtt/README_CN.md @@ -0,0 +1,22 @@ +# Eclipse Paho MQTT C/C++ client for Embedded platforms + +This repository contains the source code for the [Eclipse Paho](http://eclipse.org/paho) MQTT C/C++ client library for Embedded platorms. + +It is dual licensed under the EPL and EDL (see about.html and notice.html for more details). You can choose which of these licenses you want to use the code under. The EDL allows you to embed the code into your application, and distribute your application in binary or source form without contributing any of your code, or any changes you make back to Paho. See the EDL for the exact conditions. + +The MQTTPacket directory contains the lowest level C library with the smallest requirements. This supplies simple serialization +and deserialization routines. It is mainly up to you to write and read to and from the network. + + +## 编译 + +* 在rtconfig.h中添加 `#define RT_USING_PAHOMQTT` +* 开启LWIP组件 + +## 使用方法 + +参见 `rt-thread\examples\network\mqttclient.c` + +## 关于MQTT + +参见 [MQTT community site](http://mqtt.org). -- GitLab