mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
ac44bacd91
2. Speed improvement in JT9 decoder. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3488 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
26 lines
489 B
Fortran
26 lines
489 B
Fortran
subroutine fillcom(nutc0,ndepth0,nrxfreq)
|
|
character*20 datetime
|
|
common/npar/nutc,ndiskdat,ntrperiod,nfqso,newdat,npts8,nfa,nfb,ntol, &
|
|
kin,nzhsym,nsave,nagain,ndepth,ntxmode,nmode,datetime
|
|
save
|
|
|
|
nutc=nutc0
|
|
ndiskdat=1
|
|
ntrperiod=60
|
|
nfqso=nrxfreq
|
|
newdat=1
|
|
npts8=74736
|
|
nfa=2700
|
|
nfb=4007
|
|
ntol=3
|
|
kin=1024
|
|
nzhsym=173
|
|
nsave=0
|
|
ndepth=ndepth0
|
|
ntxmode=9
|
|
nmode=9+65
|
|
datetime="2013-Apr-16 15:13"
|
|
|
|
return
|
|
end subroutine fillcom
|