Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 29-Oct-2021 | - | ||||
.gitignore | A D | 29-Oct-2021 | 145 | 18 | 15 | |
Makefile | A D | 29-Oct-2021 | 397 | 23 | 18 | |
README.md | A D | 29-Oct-2021 | 2.1 KiB | 48 | 29 | |
SConstruct | A D | 29-Oct-2021 | 260 | 11 | 4 | |
demo.c | A D | 29-Oct-2021 | 3.5 KiB | 105 | 78 | |
maintask.c | A D | 29-Oct-2021 | 1.2 KiB | 57 | 31 | |
package.yaml | A D | 29-Oct-2021 | 314 | 19 | 14 | |
radio.c | A D | 29-Oct-2021 | 41 KiB | 1,313 | 796 | |
radio.h | A D | 29-Oct-2021 | 15.7 KiB | 418 | 80 | |
sx126x-board.h | A D | 29-Oct-2021 | 4.5 KiB | 189 | 35 | |
sx126x-haas.c | A D | 29-Oct-2021 | 8.5 KiB | 383 | 276 | |
sx126x.c | A D | 29-Oct-2021 | 21.6 KiB | 765 | 575 | |
sx126x.h | A D | 29-Oct-2021 | 38.2 KiB | 1,143 | 506 |
README.md
1@page lora_p2p_demo HaaS100实现LoRa点对点通信 2 3[更正文档](https://gitee.com/alios-things/lora_p2p_demo/edit/master/README.md)      [贡献说明](https://help.aliyun.com/document_detail/302301.html) 4 5案例简介 6==== 7 8本方案选取SX1268作为LoRa通信IC, HaaS100以外挂SX1268 SPI模组的方式,实现LoRa数据的收发。 9 10<img src="https://img.alicdn.com/imgextra/i3/O1CN01584e971o2zXPL0DOc_!!6000000005168-0-tps-1288-132.jpg" style="max-width:800px;" /> 11 12 13基础知识 14==== 15 16LoRa是Semtech公司采用和推广的一种基于扩频技术的超远距离无线传输技术。相较于传统通信技术,LoRa具备低门槛、远距离、长续航的优势,其在数字农业、智慧社区等领域具有很高的实用价值。更多LoRa介绍请参阅:[www.semtech.com/lora](http://www.semtech.com/lora) 17 18物品清单和Checklist 19============== 20 21* 两块HaaS100开发板:用户数据收发的主机。 22* 两块SX1268的模组:用于收发LoRa数据。 23* 若干杜邦线:用于连接HaaS100和SX1268模组 24 25案例实现 26==== 27 28* 硬件连接 29 30<img src="https://img.alicdn.com/imgextra/i1/O1CN01FEwNgJ1QjXYO3Rm5I_!!6000000002012-0-tps-1266-854.jpg" style="max-width:800px;" /> 31 32* 准备两块HaaS100开发板。一块作通信发送方,另一块作通信接收方。 33* 准备两块SX1268模组,分别连接到两块HaaS100上。连接线序如下图所示: 34 35<img src="https://img.alicdn.com/imgextra/i1/O1CN01JPy7ir21uex7305ZI_!!6000000007045-0-tps-438-181.jpg" style="max-width:800px;" /> 36 37* 软件实现 38 * 软件主要参考Semtech官方驱动,将其移植到AliOS Things, 并做了HaaS100平台相应的适配。 39 * 本案例同时包含发送和接收的逻辑,需要按照通信角色修改demo.c 第18行: 40 41<img src="https://img.alicdn.com/imgextra/i2/O1CN013dKGL41fQVKMaOY5A_!!6000000004001-2-tps-756-216.png" style="max-width:800px;" /> 42 43<img src="https://img.alicdn.com/imgextra/i4/O1CN01CXUyle1i6IhhbpjZ3_!!6000000004363-2-tps-728-210.png" style="max-width:800px;" /> 44 45效果图 46=== 47<img src="https://img.alicdn.com/imgextra/i2/O1CN015ogTbg1e59FJ8nOSy_!!6000000003819-2-tps-2110-618.png" style="max-width:800px;" /> 48