Driver for the SX1280 RF Transceiver

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

Revision:
12:c4f110f3fe3e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rangingCorrection/rangingCorrection_defines.h	Thu Nov 08 10:08:44 2018 +0000
@@ -0,0 +1,15 @@
+#ifndef __RANGING_CORRECTION_DEFINES_H__
+#define __RANGING_CORRECTION_DEFINES_H__
+
+#include <stdint.h>
+
+#define NUMBER_OF_FACTORS_PER_SFBW 160
+#define MAX_POLYNOME_ORDER         10
+
+typedef struct{
+    const uint8_t order;
+    const double coefficients[MAX_POLYNOME_ORDER];
+}RangingCorrectionPolynomes_t;
+
+#endif // __RANGING_CORRECTION_DEFINES_H__
+