Driver for the SX1280 RF Transceiver

Dependents:   SX1280PingPong RangignMaster RangingSlave MSNV2-Terminal_V1-6 ... more

Committer:
mverdy
Date:
Thu Nov 08 10:08:44 2018 +0000
Revision:
12:c4f110f3fe3e
Synchronze driver on v1.3.1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mverdy 12:c4f110f3fe3e 1 #ifndef __SX1280_RANGING_CORRECTION_H__
mverdy 12:c4f110f3fe3e 2 #define __SX1280_RANGING_CORRECTION_H__
mverdy 12:c4f110f3fe3e 3
mverdy 12:c4f110f3fe3e 4 #include "sx1280.h"
mverdy 12:c4f110f3fe3e 5
mverdy 12:c4f110f3fe3e 6 namespace Sx1280RangingCorrection
mverdy 12:c4f110f3fe3e 7 {
mverdy 12:c4f110f3fe3e 8 double GetRangingCorrectionPerSfBwGain( const RadioLoRaSpreadingFactors_t sf, const RadioLoRaBandwidths_t bw, const int8_t gain);
mverdy 12:c4f110f3fe3e 9 double ComputeRangingCorrectionPolynome(const RadioLoRaSpreadingFactors_t sf, const RadioLoRaBandwidths_t bw, const double median);
mverdy 12:c4f110f3fe3e 10 }
mverdy 12:c4f110f3fe3e 11
mverdy 12:c4f110f3fe3e 12 #endif // __SX1280_RANGING_CORRECTION_H__