-
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tested LoRaWan with a single channel LoRaWan gateway
Added support for single channel gateways Added support for Insight SIP ISP4520 SoC (nRF52832 + Sx1261/2 in one package)
- Loading branch information
1 parent
9144fc1
commit daaaf07
Showing
6 changed files
with
32 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "SX126x-Arduino", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"keywords": [ | ||
"lora", | ||
"Semtech", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
name=SX126x-Arduino | ||
version=1.0.1 | ||
version=1.0.2 | ||
author=Bernd Giesecke <[email protected]> | ||
maintainer=Bernd Giesecke <[email protected]> | ||
sentence=Arduino library to use Semtech SX126x LoRa chips and modules to communicate | ||
paragraph=This library is for LoRa communication with Semtech SX126x chips. It is based on Semtech`s SX126x libraries and adapted to the Arduino framework for ESP32, ESP8266 and Nordic nRF52832. It will not work with other uC`s like AVR. | ||
category=Communication | ||
url=https://github.com/beegee-tokyo/SX126x-Arduino/ | ||
architectures=esp32,nordicnrf52,esp8266 | ||
architectures=esp32,nordicnrf52,esp8266,nrf52 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,6 +55,8 @@ | |
extern "C" | ||
{ | ||
|
||
#include "mac/Commissioning.h" | ||
|
||
/*! | ||
* Macro to compute bit of a channel index. | ||
*/ | ||
|