Revert to displaying Nico's return code with QRA64 messages. Suppress a few false decodes that cannot be correct messages.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7342 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor
2016-11-28 15:11:00 +00:00
parent 8b216ff05d
commit 8dccbbb337
4 changed files with 31 additions and 6 deletions
+4 -6
View File
@@ -236,10 +236,9 @@ contains
integer, intent(in) :: nsum
integer, intent(in) :: minsync
integer i,nft,iirc,nap(-1:11)
integer i,nft
logical is_deep,is_average
character decoded*22,csync*2,cflags*3
data nap/-1,0,2,3,2,3,4,2,3,6,4,6,6/
if(width.eq.-9999.0) stop !Silence compiler warning
!$omp critical(decode_results)
@@ -249,17 +248,16 @@ contains
if(ft.ge.80) then !QRA64 mode
nft=ft-100
iirc=max(-1,min(nft,11))
csync=': '
if(sync.ge.float(minsync) .or. nft.ge.0) csync=':*'
if(nft.lt.0) then
write(*,1009) params%nutc,snr,dt,freq,csync,decoded
else
write(*,1009) params%nutc,snr,dt,freq,csync,decoded,nap(iirc),nft
1009 format(i4.4,i4,f5.1,i5,1x,a2,1x,a22,i2,i3)
write(*,1009) params%nutc,snr,dt,freq,csync,decoded,nft
1009 format(i4.4,i4,f5.1,i5,1x,a2,1x,a22,i2)
endif
write(13,1011) params%nutc,nint(sync),snr,dt,float(freq),drift, &
decoded,nap(iirc),nft
decoded,nft
1011 format(i4.4,i4,i5,f6.2,f8.0,i4,3x,a22,' QRA64',i3)
go to 100
endif