mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-10-31 04:50:34 -04:00 
			
		
		
		
	git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@2598 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef COMMONS_H
 | |
| #define COMMONS_H
 | |
| 
 | |
| #define NFFT 32768
 | |
| 
 | |
| extern "C" {
 | |
| 
 | |
| extern struct {
 | |
|   short int d2[1800*12000];         //This is "common/jt8com/..." in fortran
 | |
|   float ss[184*4400];
 | |
|   float savg[4400];
 | |
|   double fcenter;                   //USB dial freq (kHz)
 | |
|   int nutc;                         //UTC as integer, HHMM
 | |
|   int ntrperiod;                    //TR period (seconds)
 | |
|   int mousedf;                      //User-selected DF
 | |
|   int mousefqso;                    //User-selected QSO freq (kHz)
 | |
|   int nagain;                       //1 ==> decode only at fQSO +/- Tol
 | |
|   int ndepth;                       //How much hinted decoding to do?
 | |
|   int ndiskdat;                     //1 ==> data read from *.tf2 or *.iq file
 | |
|   int newdat;                       //1 ==> new data, must do long FFT
 | |
|   int nfa;                          //Low decode limit (kHz)
 | |
|   int nfb;                          //High decode limit (kHz)
 | |
|   int ntol;                         //+/- decoding range around fQSO (Hz)
 | |
|   int map65RxLog;                   //Flags to control log files
 | |
|   int nfsample;                     //Input sample rate
 | |
|   int nsave;                        //Number of s3(64,63) spectra saved
 | |
|   int kin;
 | |
|   int kline;
 | |
|   char datetime[20];
 | |
| } jt8com_;
 | |
| 
 | |
| }
 | |
| 
 | |
| #endif // COMMONS_H
 |