Skip to content

Commit

Permalink
Merge pull request #99 from mcci-catena/issue96
Browse files Browse the repository at this point in the history
Updates for #96 and docs
  • Loading branch information
terrillmoore authored Apr 13, 2019
2 parents a379d3b + be4e171 commit 8893331
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,18 @@ _To be documented._
## Release History
- HEAD has the following changes.
- [#96](https://github.com/mcci-catena/Catena-Arduino-Platform/issues/96) properly restores the NetID from a saved session.
- [#93](https://github.com/mcci-catena/Catena-Arduino-Platform/issues/93) adds EV_TXCANCELED support.
- [#92](https://github.com/mcci-catena/Catena-Arduino-Platform/issues/92), [#84](https://github.com/mcci-catena/Catena-Arduino-Platform/issues/84), [#85](https://github.com/mcci-catena/Catena-Arduino-Platform/issues/85), [#87](https://github.com/mcci-catena/Catena-Arduino-Platform/issues/87) handles transmit completion status correctly.
- [#91](https://github.com/mcci-catena/Catena-Arduino-Platform/issues/91) removes a redundant call to `UpdateFCntDown()`.
- [#89](https://github.com/mcci-catena/Catena-Arduino-Platform/issues/89) adds new LMIC event codes added as part of the certification push.
- [#5](https://github.com/mcci-catena/Catena-Arduino-Platform/issues/5) enables link-check-mode by default.
- [#83](https://github.com/mcci-catena/Catena-Arduino-Platform/issues/83) add `SetLinkCheckMode() method.
- [#81](https://github.com/mcci-catena/Catena-Arduino-Platform/issues/81) allows uplinks to arbitrary ports.
- v0.5.3 is a patch release. It fixes a platformio compile warning, and also fixes another missing return for `Arduino_LoRaWAN::begin()` (this time in an overload in the header file.)
- v0.5.2 incorporates the fix for issue [#68](https://github.com/mcci-catena/arduino-lorawan/issues/68), missing return in `Arduino_LoRaWAN::begin()`.
Expand Down
3 changes: 2 additions & 1 deletion src/lib/machineq_base_netbegin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ bool Arduino_LoRaWAN_machineQ_base::NetBegin()

if (this->GetAbpProvisioningInfo(&abpInfo))
{
LMIC_setSession(/* port */ 1,
LMIC_setSession(
abpInfo.NetID,
abpInfo.DevAddr,
abpInfo.NwkSKey,
abpInfo.AppSKey
Expand Down
3 changes: 2 additions & 1 deletion src/lib/ttn_base_netbegin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ bool Arduino_LoRaWAN_ttn_base::NetBegin()

if (this->GetAbpProvisioningInfo(&abpInfo))
{
LMIC_setSession(/* port */ 1,
LMIC_setSession(
abpInfo.NetID,
abpInfo.DevAddr,
abpInfo.NwkSKey,
abpInfo.AppSKey
Expand Down

0 comments on commit 8893331

Please sign in to comment.