File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ monitor_speed = 115200
1414lib_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
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments