Skip to content

Commit 291b98c

Browse files
author
Scott Powell
committed
updating RadioLib to ver 7.1.2
1 parent a259d27 commit 291b98c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

platformio.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ monitor_speed = 115200
1414
lib_deps =
1515
SPI
1616
Wire
17-
jgromes/RadioLib @ ^6.3.0
17+
jgromes/RadioLib @ ^7.1.2
1818
rweather/Crypto @ ^0.4.0
1919
adafruit/RTClib @ ^2.1.3
2020
melopero/Melopero RV3028 @ ^1.1.0

src/helpers/CustomSX1262.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class CustomSX1262 : public SX1262 {
99
CustomSX1262(Module *mod) : SX1262(mod) { }
1010

1111
bool isReceiving() {
12-
uint16_t irq = getIrqStatus();
12+
uint16_t irq = getIrqFlags();
1313
bool hasPreamble = (irq & SX126X_IRQ_HEADER_VALID);
1414
return hasPreamble;
1515
}

src/helpers/CustomSX1268.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class CustomSX1268 : public SX1268 {
99
CustomSX1268(Module *mod) : SX1268(mod) { }
1010

1111
bool isReceiving() {
12-
uint16_t irq = getIrqStatus();
12+
uint16_t irq = getIrqFlags();
1313
bool hasPreamble = (irq & SX126X_IRQ_HEADER_VALID);
1414
return hasPreamble;
1515
}

0 commit comments

Comments
 (0)