mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
3dc6abc0c1
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3462 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
26 lines
478 B
Fortran
26 lines
478 B
Fortran
subroutine fillcom(nutc0,ndepth0)
|
|
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=1197
|
|
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
|