mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-10-31 13:10:19 -04:00 
			
		
		
		
	2. "/A" added to list of optional callsign suffixes. 3. Improved algorithm for measuring error in soundcard sample rates. 4. Optional 5-sec shift of input data, to catch some clock errors. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@274 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			25 lines
		
	
	
		
			601 B
		
	
	
	
		
			Fortran
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			601 B
		
	
	
	
		
			Fortran
		
	
	
	
	
	
|       subroutine getpfx2(k0,callsign)
 | |
| 
 | |
|       character callsign*12
 | |
|       include 'pfx.f'
 | |
|       character addpfx*8
 | |
|       common/gcom4/addpfx
 | |
| 
 | |
|       k=k0
 | |
|       if(k.gt.450) k=k-450
 | |
|       if(k.ge.1 .and. k.le.NZ) then
 | |
|          iz=index(pfx(k),' ') - 1
 | |
|          callsign=pfx(k)(1:iz)//'/'//callsign
 | |
|       else if(k.ge.401 .and. k.le.400+NZ2) then
 | |
|          iz=index(callsign,' ') - 1
 | |
|          callsign=callsign(1:iz)//'/'//sfx(k-400)
 | |
|       else if(k.eq.449) then
 | |
|          iz=index(addpfx,' ') - 1
 | |
|          if(iz.lt.1) iz=8
 | |
|          callsign=addpfx(1:iz)//'/'//callsign
 | |
|       endif
 | |
| 
 | |
|       return
 | |
|       end
 | |
| 
 |