Skip to content

Commit 84ee486

Browse files
committed
tweaks to test the digi library updates via our normal builds
1 parent fe4006f commit 84ee486

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/build-iotnode-lorawan.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,11 @@ jobs:
6565

6666
# currently using a local copy of the library that removed some warning messages - source is here:
6767
# arduino-cli lib install --git-url "https://github.com/felixgalindo/XBeeArduino.git"
68+
# arduino-cli lib install --git-url "https://github.com/sparkfun/XBeeArduino.git"
6869
- name: Install The XBee LoRaWAN library
6970
run: |
7071
arduino-cli config set library.enable_unsafe_install true
71-
arduino-cli lib install --git-url "https://github.com/sparkfun/XBeeArduino.git"
72+
arduino-cli lib install --git-url "https://github.com/felixgalindo/XBeeArduino.git"
7273
arduino-cli lib install FastLED
7374
7475
# Compile time - build the Firmware for the data logger.

sfeIoTNodeLoRaWAN/flxLoRaWANDigi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ bool flxLoRaWANDigi::setupModule(void)
391391
for (int i = 0; i < 3; i++)
392392
{
393393
flxLog_N_(F("."));
394-
if (_pXBeeLR->getLoRaWANDevEUI((uint8_t *)_devEUI, sizeof(_devEUI)))
394+
if (_pXBeeLR->getLoRaWANDevEUI(_devEUI, sizeof(_devEUI)))
395395
{
396396
status = true;
397397
break;

sfeIoTNodeLoRaWAN/sfeNLVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#define kDLVersionNumberPoint 1
2323

2424
// Version string description
25-
#define kDLVersionDescriptor "RC2"
25+
#define kDLVersionDescriptor "RC3"
2626

2727
// app name/class ID string
2828
#define kDLAppClassNameID "SFE-IOT-NODE_LORAWAN"

0 commit comments

Comments
 (0)