1 #ifndef __RANGING_CORRECTION_DEFINES_H__ 2 #define __RANGING_CORRECTION_DEFINES_H__ 3 4 #include <stdint.h> 5 6 #define NUMBER_OF_FACTORS_PER_SFBW 160 7 #define MAX_POLYNOME_ORDER 10 8 9 typedef struct{ 10 const uint8_t order; 11 const double coefficients[MAX_POLYNOME_ORDER]; 12 }RangingCorrectionPolynomes_t; 13 14 #endif // __RANGING_CORRECTION_DEFINES_H__ 15