mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-15 08:31:57 -05:00
Screen out FT8 decodes with excessively large number of hard errors. These are almost certainly undetected errors.
This commit is contained in:
parent
8eb58a47ba
commit
e7b19b29b0
@ -316,7 +316,7 @@ subroutine ft8b_2(dd0,newdat,nQSOProgress,nfqso,nftx,ndepth,lapon,lapcqonly, &
|
||||
|
||||
msg37=' '
|
||||
xsnr=-99.0
|
||||
if(nharderrors.lt.0) cycle
|
||||
if(nharderrors.lt.0 .or. nharderrors.gt.36) cycle
|
||||
if(count(cw.eq.0).eq.174) cycle !Reject the all-zero codeword
|
||||
nbadcrc=0 ! If we get this far, must be a valid codeword.
|
||||
write(c77,'(77i1)') message77
|
||||
|
Loading…
Reference in New Issue
Block a user