File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ monitor_speed = 115200
14
14
lib_deps =
15
15
SPI
16
16
Wire
17
- jgromes/RadioLib @ ^6.3.0
17
+ jgromes/RadioLib @ ^7.1.2
18
18
rweather/Crypto @ ^0.4.0
19
19
adafruit/RTClib @ ^2.1.3
20
20
melopero/Melopero RV3028 @ ^1.1.0
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ class CustomSX1262 : public SX1262 {
9
9
CustomSX1262 (Module *mod) : SX1262(mod) { }
10
10
11
11
bool isReceiving () {
12
- uint16_t irq = getIrqStatus ();
12
+ uint16_t irq = getIrqFlags ();
13
13
bool hasPreamble = (irq & SX126X_IRQ_HEADER_VALID);
14
14
return hasPreamble;
15
15
}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ class CustomSX1268 : public SX1268 {
9
9
CustomSX1268 (Module *mod) : SX1268(mod) { }
10
10
11
11
bool isReceiving () {
12
- uint16_t irq = getIrqStatus ();
12
+ uint16_t irq = getIrqFlags ();
13
13
bool hasPreamble = (irq & SX126X_IRQ_HEADER_VALID);
14
14
return hasPreamble;
15
15
}
You can’t perform that action at this time.
0 commit comments