1
0
mirror of https://github.com/sandeepmistry/arduino-LoRa.git synced 2025-09-04 14:42:10 +03:00

Add getting the frequency error of a packet (#111)

This commit is contained in:
torntrousers
2018-03-19 00:02:47 +00:00
committed by Sandeep Mistry
parent f5cae9c25d
commit 27e2963c97
4 changed files with 51 additions and 0 deletions

8
API.md
View File

@@ -166,6 +166,14 @@ float snr = LoRa.packetSnr();
Returns the estimated SNR of the received packet in dB.
### Packet Frequency Error
```arduino
long freqErr = LoRa.packetFrequencyError();
```
Returns the frequency error of the received packet in Hz. The frequency error is the frequency offset between the receiver centre frequency and that of an incoming LoRa signal.
### Available
```arduino