Driver for the SX1280 RF Transceiver

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

rangingCorrection/rangingCorrection_defines.h

Committer:
mverdy
Date:
2018-11-08
Revision:
12:c4f110f3fe3e

File content as of revision 12:c4f110f3fe3e:

#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__