2012-05-22 13:09:48 -04:00
|
|
|
#ifndef COMMONS_H
|
|
|
|
#define COMMONS_H
|
|
|
|
|
2012-10-03 11:42:13 -04:00
|
|
|
#define NSMAX 22000
|
2012-05-22 13:09:48 -04:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
2012-09-25 12:04:38 -04:00
|
|
|
extern struct {
|
2012-10-16 19:32:15 -04:00
|
|
|
float ss[184*NSMAX]; //This is "common/jt9com/..." in fortran
|
2012-09-28 19:59:50 -04:00
|
|
|
float savg[NSMAX];
|
2012-10-16 19:32:15 -04:00
|
|
|
short int d2[1800*12000];
|
2012-09-25 12:04:38 -04:00
|
|
|
int nutc; //UTC as integer, HHMM
|
2012-10-16 19:32:15 -04:00
|
|
|
int ndiskdat; //1 ==> data read from *.wav file
|
2012-09-25 16:26:12 -04:00
|
|
|
int ntrperiod; //TR period (seconds)
|
2012-10-19 15:26:07 -04:00
|
|
|
int nfqso; //User-selected QSO freq (kHz)
|
2012-09-25 12:04:38 -04:00
|
|
|
int nagain; //1 ==> decode only at fQSO +/- Tol
|
|
|
|
int newdat; //1 ==> new data, must do long FFT
|
2012-10-19 15:26:07 -04:00
|
|
|
int npts8; //npts for c0() array
|
2012-09-25 12:04:38 -04:00
|
|
|
int nfb; //High decode limit (kHz)
|
|
|
|
int ntol; //+/- decoding range around fQSO (Hz)
|
2012-07-04 12:27:57 -04:00
|
|
|
int kin;
|
2012-10-30 12:49:24 -04:00
|
|
|
int nsynced;
|
|
|
|
int ndecoded;
|
2012-10-03 11:42:13 -04:00
|
|
|
} jt9com_;
|
2012-09-25 12:04:38 -04:00
|
|
|
|
2012-05-22 13:09:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // COMMONS_H
|