Skip to content

Commit

Permalink
Fixed bug when received package has CRC error
Browse files Browse the repository at this point in the history
Added preamble detection callback    
Added sensor and gateway example using deep sleep.
  • Loading branch information
beegee-tokyo committed Jan 18, 2020
1 parent a2bd4e3 commit c80fa06
Show file tree
Hide file tree
Showing 11 changed files with 798 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "SX126x-Arduino",
"version": "1.0.6",
"version": "1.0.7",
"keywords": [
"lora",
"Semtech",
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
Arduino library 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 nRF52832. It will not work with other uC's like AVR.

# Release Notes

## V1.0.7 Bug fix and additional callback
- Fixed bug when received package has CRC error
- Added preamble detection callback
- Added sensor and gateway example using deep sleep.
## V1.0.6 Bug fix and deep-sleep functionality
- Updated examples
- Added check if SX126x is really connected
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
```
----
## Changelog
- 2020-01-16:
- Fix bug in receive callbacks in case a CRC error is detected.
- Added Preamble detection callback
- Added two more examples for a sensor node and a gateway node with deep sleep usage.
- 2019-12-28:
- Updated examples
- 2019-12-12:
Expand Down
19 changes: 19 additions & 0 deletions examples/Sensor-Gateway-Deepsleep/LoRa-Gateway/platformio.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html

[env:featheresp32]
platform = espressif32
board = featheresp32
framework = arduino
upload_port = COM30
upload_speed = 915200
lib_deps =
SX126X-Arduino
Adafruit MQTT Library
Loading

0 comments on commit c80fa06

Please sign in to comment.