mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-23 18:02:29 -04:00
Mark JT4 Fano decodes with 'f'.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6680 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
f5cec462d4
commit
6bbfb0e1f1
@ -159,9 +159,12 @@ contains
|
|||||||
|
|
||||||
character*2 :: cqual
|
character*2 :: cqual
|
||||||
|
|
||||||
|
! write(*,3001) 'A',have_sync,is_deep,is_average,int(qual),ave,decoded
|
||||||
|
!3001 format(a1,3L2,2i4,1x,a22)
|
||||||
if (have_sync) then
|
if (have_sync) then
|
||||||
if (int(qual).gt.0) then
|
|
||||||
write(cqual, '(i2)') int(qual)
|
write(cqual, '(i2)') int(qual)
|
||||||
|
if(int(qual).eq.99) cqual=' f'
|
||||||
|
if (int(qual).gt.0) then
|
||||||
if (ave.gt.0) then
|
if (ave.gt.0) then
|
||||||
write(*,1000) params%nutc,snr,dt,freq,sync,decoded,cqual, &
|
write(*,1000) params%nutc,snr,dt,freq,sync,decoded,cqual, &
|
||||||
char(ichar('A')+ich-1),ave
|
char(ichar('A')+ich-1),ave
|
||||||
@ -171,13 +174,18 @@ contains
|
|||||||
end if
|
end if
|
||||||
else
|
else
|
||||||
if (ave.gt.0) then
|
if (ave.gt.0) then
|
||||||
write(*,1000) params%nutc,snr,dt,freq,sync,decoded,'*', &
|
if(int(qual).eq.99) cqual=' f'
|
||||||
|
write(*,1000) params%nutc,snr,dt,freq,sync,decoded,cqual, &
|
||||||
char(ichar('A')+ich-1),ave
|
char(ichar('A')+ich-1),ave
|
||||||
else
|
else
|
||||||
write(*,1000) params%nutc,snr,dt,freq,sync,decoded,' *', &
|
if(int(qual).le.0) then
|
||||||
|
write(*,1000) params%nutc,snr,dt,freq,sync
|
||||||
|
else
|
||||||
|
write(*,1000) params%nutc,snr,dt,freq,sync,decoded,cqual, &
|
||||||
char(ichar('A')+ich-1)
|
char(ichar('A')+ich-1)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
end if
|
||||||
else
|
else
|
||||||
write(*,1000) params%nutc,snr,dt,freq
|
write(*,1000) params%nutc,snr,dt,freq
|
||||||
end if
|
end if
|
||||||
|
@ -206,7 +206,7 @@ contains
|
|||||||
! Fano succeeded: report the message and return !Fano OK
|
! Fano succeeded: report the message and return !Fano OK
|
||||||
if (associated (this%decode_callback)) then
|
if (associated (this%decode_callback)) then
|
||||||
call this%decode_callback(nsnr,dtx,nfreq,.true.,csync, &
|
call this%decode_callback(nsnr,dtx,nfreq,.true.,csync, &
|
||||||
.false.,decoded,0.,ich,.false.,0)
|
.false.,decoded,99.,ich,.false.,0)
|
||||||
end if
|
end if
|
||||||
nsave=0
|
nsave=0
|
||||||
go to 990
|
go to 990
|
||||||
@ -243,7 +243,7 @@ contains
|
|||||||
! Fano succeeded: report the message AVG FANO OK
|
! Fano succeeded: report the message AVG FANO OK
|
||||||
if (associated (this%decode_callback)) then
|
if (associated (this%decode_callback)) then
|
||||||
call this%decode_callback(nsnr,dtx,nfreq,.true.,csync, &
|
call this%decode_callback(nsnr,dtx,nfreq,.true.,csync, &
|
||||||
.false.,avemsg,0.,ich,.true.,nfanoave)
|
.false.,avemsg,99.,ich,.true.,nfanoave)
|
||||||
end if
|
end if
|
||||||
prtavg=.true.
|
prtavg=.true.
|
||||||
cycle
|
cycle
|
||||||
|
Loading…
x
Reference in New Issue
Block a user