mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-03 13:30:52 -05:00 
			
		
		
		
	1. Insert dummy report when Hound is called by complex-callsign Fox. 2. Allow Fox to transmit anywhere between 300 and 900 Hz. 3. Restrict randomized Hound freq to the range 1000 - 3000 Hz. 4. Suppress Fox signals that would be duplicates. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8376 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			37 lines
		
	
	
		
			839 B
		
	
	
	
		
			Fortran
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			839 B
		
	
	
	
		
			Fortran
		
	
	
	
	
	
subroutine foxfilt(nslots,nfreq,width,wave)
 | 
						|
 | 
						|
  parameter (NN=79,ND=58,KK=87,NSPS=4*1920)
 | 
						|
  parameter (NWAVE=NN*NSPS,NFFT=614400,NH=NFFT/2)
 | 
						|
  real wave(NWAVE)
 | 
						|
  real x(NFFT)
 | 
						|
  complex cx(0:NH)
 | 
						|
  equivalence (x,cx)
 | 
						|
 | 
						|
  x(1:NWAVE)=wave
 | 
						|
  x(NWAVE+1:)=0.
 | 
						|
  call four2a(x,NFFT,1,-1,0)              !r2c
 | 
						|
  df=48000.0/NFFT
 | 
						|
  fa=nfreq - 0.5*6.25
 | 
						|
  fb=nfreq + 7.5*6.25 + (nslots-1)*60.0
 | 
						|
  ia2=nint(fa/df)
 | 
						|
  ib1=nint(fb/df)
 | 
						|
  ia1=nint(ia2-width/df)
 | 
						|
  ib2=nint(ib1+width/df)
 | 
						|
  pi=4.0*atan(1.0)
 | 
						|
  do i=ia1,ia2
 | 
						|
     fil=(1.0 + cos(pi*df*(i-ia2)/width))/2.0
 | 
						|
     cx(i)=fil*cx(i)
 | 
						|
  enddo
 | 
						|
  do i=ib1,ib2
 | 
						|
     fil=(1.0 + cos(pi*df*(i-ib1)/width))/2.0
 | 
						|
     cx(i)=fil*cx(i)
 | 
						|
  enddo
 | 
						|
  cx(0:ia1-1)=0.
 | 
						|
  cx(ib2+1:)=0.
 | 
						|
 | 
						|
  call four2a(cx,nfft,1,1,-1)                  !c2r
 | 
						|
  wave=x(1:NWAVE)/nfft
 | 
						|
 | 
						|
  return
 | 
						|
end subroutine foxfilt
 |