You've already forked arduino-LoRa
mirror of
https://github.com/sandeepmistry/arduino-LoRa.git
synced 2025-07-10 22:00:57 +03:00
Add getting the frequency error of a packet (#111)
This commit is contained in:
committed by
Sandeep Mistry
parent
f5cae9c25d
commit
27e2963c97
@ -27,6 +27,7 @@ public:
|
||||
int parsePacket(int size = 0);
|
||||
int packetRssi();
|
||||
float packetSnr();
|
||||
long packetFrequencyError();
|
||||
|
||||
// from Print
|
||||
virtual size_t write(uint8_t byte);
|
||||
@ -71,6 +72,8 @@ private:
|
||||
|
||||
void handleDio0Rise();
|
||||
|
||||
long getSignalBandwidth();
|
||||
|
||||
uint8_t readRegister(uint8_t address);
|
||||
void writeRegister(uint8_t address, uint8_t value);
|
||||
uint8_t singleTransfer(uint8_t address, uint8_t value);
|
||||
|
Reference in New Issue
Block a user