16 lines
396 B
C++
16 lines
396 B
C++
#pragma once
|
|
|
|
#include <RadioLib.h>
|
|
|
|
#define SX126X_IRQ_HEADER_VALID 0b0000010000 // 4 4 valid LoRa header received
|
|
|
|
class CustomSX1262 : public SX1262 {
|
|
public:
|
|
CustomSX1262(Module *mod) : SX1262(mod) { }
|
|
|
|
bool isReceiving() {
|
|
uint16_t irq = getIrqFlags();
|
|
bool hasPreamble = (irq & SX126X_IRQ_HEADER_VALID);
|
|
return hasPreamble;
|
|
}
|
|
}; |