Skip to content

Commit

Permalink
Add missing header file
Browse files Browse the repository at this point in the history
  • Loading branch information
beegee-tokyo committed Jul 2, 2024
1 parent 7554799 commit 8554830
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Arduino library for LoRa communication with Semtech SX126x chips. It is based on

# Release Notes

# V2.0.26 Add missing header file
- Fix compilation error

# V2.0.25 Fix DR reset with ADR enabled
- With ADR enabled, fix the DR reset to default when confirmed/unconfirmed packets are sent.

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
----
## Changelog
[Code releases](CHANGELOG.md)
- 2024-07-02 Add missing header file
- Fix compilation error
- 2024-06-26
- With ADR enabled, fix the DR reset to default when confirmed/unconfirmed packets are sent.
- 2024-02-24
Expand Down
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": "2.0.25",
"version": "2.0.26",
"keywords": [
"lora",
"Semtech",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=SX126x-Arduino
version=2.0.25
version=2.0.26
author=Bernd Giesecke <[email protected]>
maintainer=Bernd Giesecke <[email protected]>
sentence=Arduino library to use Semtech SX126x LoRa chips and modules to communicate
Expand Down
2 changes: 1 addition & 1 deletion src/mac/LoRaMac.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1245,7 +1245,7 @@ static void OnMacStateCheckTimerEvent(void)

TimerStop(&MacStateCheckTimer);

LOG_LIB("LM", "OnMacStateCheckTimerEvent");
// LOG_LIB("LM", "OnMacStateCheckTimerEvent");
if (LoRaMacFlags.Bits.MacDone == 1)
{
if ((LoRaMacState & LORAMAC_RX_ABORT) == LORAMAC_RX_ABORT)
Expand Down
2 changes: 2 additions & 0 deletions src/mac/LoRaMacHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
#include "system/utilities.h"

#include "mac/LoRaMacTest.h"
#include "mac/LoRaMac.h"
extern LoRaMacParams_t LoRaMacParams;

uint16_t ChannelsMask[6];
uint16_t ChannelsDefaultMask[6];
Expand Down

0 comments on commit 8554830

Please sign in to comment.