mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
7cb0731dc6
Add "red3" (but not yet using it). git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3275 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
26 lines
483 B
Fortran
26 lines
483 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,nrxlog,nfsample,datetime
|
|
save
|
|
|
|
nutc=nutc0
|
|
ndiskdat=1
|
|
ntrperiod=60
|
|
nfqso=1500
|
|
newdat=1
|
|
npts8=74736
|
|
nfa=1000
|
|
nfb=2000
|
|
ntol=3
|
|
kin=1024
|
|
nzhsym=173
|
|
nsave=0
|
|
ndepth=ndepth0
|
|
nrxlog=1
|
|
nfsample=12000
|
|
datetime="2013-Apr-16 15:13"
|
|
|
|
return
|
|
end subroutine fillcom
|