28 lines
452 B
C
28 lines
452 B
C
# define VERSION "20180205"
|
|
|
|
// radio bidirectional comunication
|
|
#define TWOWAY "Yes"
|
|
#define CLIENT "Yes"
|
|
#define SERVER "Yes"
|
|
|
|
// freq added to standard channel
|
|
//#define FREQCORR 0.050
|
|
#define FREQCORR 0.0
|
|
|
|
// define the pins used
|
|
#define PINS 4,5,A6,A7
|
|
|
|
#define SERIALBUFFERSIZE 160
|
|
#define SERIALBAUDRATE 115200
|
|
#define DEBUGONSERIAL
|
|
|
|
|
|
#ifdef DEBUGONSERIAL
|
|
|
|
#define DBGSERIAL Serial
|
|
|
|
#define IF_SDEBUG(x) ({x;})
|
|
#else
|
|
#define IF_SDEBUG(x)
|
|
#endif
|