forked and modified initial value for return values and changed timer definition to TIM1 instead of int(1)

This commit is contained in:
willem oldemans
2020-10-01 09:36:42 +02:00
commit 6fab141c7e
181 changed files with 38514 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
# 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