35 lines
575 B
C
35 lines
575 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
/* IO */
|
|
#define GW_COS 6
|
|
#define COS 7
|
|
#define PTT 8
|
|
#define GWPTT 9
|
|
#define PIP 3
|
|
|
|
/* CW ID SETTINGS */
|
|
#define ID "M0ZAH/R"
|
|
#define CW_SPEED 22
|
|
#define CW_PITCH 875
|
|
|
|
/* PARAMS */
|
|
#define COURTESY CW
|
|
#define GWPIP 875
|
|
#define GWPIPLEN 120
|
|
#define PIP_LETTER 'R'
|
|
#define PIP_GW_LETTER 'I'
|
|
#define PIP_SPEED 18
|
|
#define RFPIP 1200
|
|
#define RFPIPLEN 80
|
|
#define TAILPIPS true
|
|
#define TAILPIP_PITCH 500
|
|
|
|
/* TIMERS */
|
|
#define HANGTIME 3000
|
|
#define KEYCHUNK_TIME 1000
|
|
#define TIMEOUT 300000
|
|
#define IDTIME 300000
|
|
#define PIP_KEYCHUNK 1500
|
|
|
|
#endif |