用华为方案的NB-IoT难免要进行数据通信,经常会看到各类AT文档中首推的CoAP协议方式。CoAP这几年随着物联网的浪潮也火了起来,和MQTT有并驾齐驱的势头,在一些物联网云平台中都有运用。
这篇笔记不去介绍CoAP,主要对华为方案NB-IoT的CoAP架构和使用,做个记录。
本文作者twowinter,转载请注明作者:http://blog.csdn.net/iotisan/
华为提供NB-IoT端到端解决方案的支持,提供多种开放能力供合作伙伴快速集成应用。提供海思的NB-IoT芯片,基站网络和Ocean Connect连接管理平台。开发者可以根据芯片/模组开发手册进行终端的开发,基于IoT平台进行APP Server开发。
从总体拓扑中可以看到,华为在这里放置了一个CoAP Server,所有使用CoAP的模组,都得先连接到华为这边。
当然,有办法绕过这个限制,那就是不使用模组内置的CoAP相关的AT指令。
自己在UDP基础上做这个协议。
查看《Quectel_BC95_AT_Commands_Manual》
5.9. AT+NCDP Configure and Query CDP Server Settings
The command is used to set and query the server IP address and port for the CDP server. It is used when
there is a HiSilicon CDP or Huawei IoT platform acting as gateway to network server applications. Please
refer to Chapter 7 for possible <err> values.
可以看到这个CoAp要实现的话,是使用 海思CDP 或者 华为IoT 平台。
方式一,主动查询方式。
5.2. AT+NMGR Get a Message
Receive a message from the CDP server.
The command returns the oldest buffered message and deletes from the buffer. If there are no messages
then no command response will be given. If new message indications (AT+NNMI) are turned on then
received messages will not be available via this command.
方式二,被动异步通知方式,从CDP平台上推送数据下来。
5.3. AT+NNMI New Message Indications
The command sets or gets new message indications that are sent. New message indications can be sent
when a downstream message is received by the terminal from the CDP server. Please refer to Chapter 7
for possible <err> values.
When new message indications and messages are enabled (AT+NNMI=1), all currently buffered
messages will be returned in the format of “+NNMI:<length>,<data>”. For example:
“+NNMI:5,48656C6C6F”.
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。