WSJT-X/lib/jt9w.f90
Joe Taylor e212367221 First decodes of wide/slow JT9 submodes from within wsjtx.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6577 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2016-04-05 14:17:34 +00:00

29 lines
642 B
Fortran

program jt9w
parameter (NSMAX=6827,NZMAX=60*12000)
real ss(184,NSMAX)
real ref(NSMAX)
integer*2 id2(NZMAX)
character*12 arg
character*22 decoded
call getarg(1,arg)
read(arg,*) iutc
open(20,file='refspec.dat',status='old')
do i=1,NSMAX
read(20,*) j,freq,ref(i)
enddo
do ifile=1,999
read(60,end=999) nutc,nfqso,ntol,ndepth,nmode,nsubmode,ss,id2
if(nutc.ne.iutc) cycle
ntol=100
call decode9w(nutc,nfqso,ntol,nsubmode,ss,id2,sync,nsnr,xdt,freq,decoded)
write(*,1100) nutc,nsnr,xdt1-1.0,nint(freq),decoded
1100 format(i4.4,i4,f5.1,i5,1x,'@',1x,a22)
exit
enddo
999 end program jt9w