• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..29-Oct-2021-

.gitignore A D29-Oct-2021145 1815

Makefile A D29-Oct-2021397 2318

README.md A D29-Oct-20212.1 KiB4829

SConstruct A D29-Oct-2021260 114

demo.c A D29-Oct-20213.5 KiB10578

maintask.c A D29-Oct-20211.2 KiB5731

package.yaml A D29-Oct-2021314 1914

radio.c A D29-Oct-202141 KiB1,313796

radio.h A D29-Oct-202115.7 KiB41880

sx126x-board.h A D29-Oct-20214.5 KiB18935

sx126x-haas.c A D29-Oct-20218.5 KiB383276

sx126x.c A D29-Oct-202121.6 KiB765575

sx126x.h A D29-Oct-202138.2 KiB1,143506

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