Driver for the SX1280 RF Transceiver

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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers rangingCorrection_defines.h Source File

rangingCorrection_defines.h

00001 #ifndef __RANGING_CORRECTION_DEFINES_H__
00002 #define __RANGING_CORRECTION_DEFINES_H__
00003 
00004 #include <stdint.h>
00005 
00006 #define NUMBER_OF_FACTORS_PER_SFBW 160
00007 #define MAX_POLYNOME_ORDER         10
00008 
00009 typedef struct{
00010     const uint8_t order;
00011     const double coefficients[MAX_POLYNOME_ORDER];
00012 }RangingCorrectionPolynomes_t;
00013 
00014 #endif // __RANGING_CORRECTION_DEFINES_H__
00015