Move FT8 files into their own directory.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8200 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Steven Franke 2017-10-30 21:30:14 +00:00
parent d4652ef0e5
commit 2e9a64aebe
25 changed files with 9 additions and 13 deletions

View File

@ -73,6 +73,7 @@ subroutine extract(s3,nadd,mode65,ntrials,naggressive,ndepth,nflip, &
call interleave63(mr2prob,-1) call interleave63(mr2prob,-1)
ntry=0 ntry=0
!call gf64_osd(mrsym,mrprob,mr2sym,mr2prob,correct)
call timer('ftrsd ',0) call timer('ftrsd ',0)
param=0 param=0
call ftrsd2(mrsym,mrprob,mr2sym,mr2prob,ntrials,correct,param,ntry) call ftrsd2(mrsym,mrprob,mr2sym,mr2prob,ntrials,correct,param,ntry)

View File

@ -37,7 +37,7 @@ contains
mygrid6,hiscall12,hisgrid6) mygrid6,hiscall12,hisgrid6)
! use wavhdr ! use wavhdr
use timer_module, only: timer use timer_module, only: timer
include 'fsk4hf/ft8_params.f90' include 'ft8/ft8_params.f90'
! type(hdr) h ! type(hdr) h
class(ft8_decoder), intent(inout) :: this class(ft8_decoder), intent(inout) :: this

View File

@ -33,16 +33,16 @@ program jt65
,'experience decoding options (1..n), default FLAGS=0','FLAGS'), & ,'experience decoding options (1..n), default FLAGS=0','FLAGS'), &
option ('single-signal-mode',.false.,'s','decode at signal frequency only','') ] option ('single-signal-mode',.false.,'s','decode at signal frequency only','') ]
naggressive=0 naggressive=10
nfqso=1500 nfqso=1500
ntrials=10000 ntrials=100000
nexp_decode=0 nexp_decode=0
ntol=1000 ntol=20
nsubmode=0 nsubmode=0
nlow=200 nlow=200
nhigh=4000 nhigh=4000
n2pass=2 n2pass=1
ndepth=3 ndepth=1
do do
call getopt('a:d:f:hm:n:rc:x:g:X:s',long_options,c,optarg,narglen,nstat,noffset,nremain,.true.) call getopt('a:d:f:hm:n:rc:x:g:X:s',long_options,c,optarg,narglen,nstat,noffset,nremain,.true.)
@ -126,7 +126,7 @@ program jt65
call test(dd,nutc,nfa,nfb,nfqso,ntol,nsubmode, & call test(dd,nutc,nfa,nfb,nfqso,ntol,nsubmode, &
n2pass,nrobust,ntrials,naggressive,ndepth, & n2pass,nrobust,ntrials,naggressive,ndepth, &
mycall,hiscall,hisgrid,nexp_decode) mycall,hiscall,hisgrid,nexp_decode)
if(nft.gt.0) exit ! if(nft.gt.0) exit
enddo enddo
call timer('jt65 ',1) call timer('jt65 ',1)

View File

@ -65,16 +65,11 @@ contains
nwidth=max(nint(sqrt(t)),2) nwidth=max(nint(sqrt(t)),2)
!### deal with nflip here! ### !### deal with nflip here! ###
!### also single_decode, csync, etc... ### !### also single_decode, csync, etc... ###
write(*,1010) snr,dt,freq,decoded write(*,1012) nint(sync),snr,dt,freq,drift,nwidth, &
1010 format(i4,f5.1,i5,1x,'#',1x,a22)
write(13,1012) nint(sync),snr,dt,freq,drift,nwidth, &
decoded,ft,sum,smo decoded,ft,sum,smo
1012 format(i4,i5,f6.2,i5,i4,i3,1x,a22,' JT65',3i3) 1012 format(i4,i5,f6.2,i5,i4,i3,1x,a22,' JT65',3i3)
nft=ft nft=ft
call flush(6) call flush(6)
! write(79,3001) sync,snr,dt,freq,candidates, &
! hard_min,total_min,rtt,tries,ft,qual,decoded
!3001 format(f5.1,i4,f5.1,i5,i6,i3,i4,f6.3,i8,i2,i3,1x,a22)
end subroutine my_callback end subroutine my_callback