mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-29 12:52:28 -04:00
Don't display DXpedition, Field Day, or ARRL RTTY messages in MSK144.
This commit is contained in:
parent
981c0122ae
commit
fa44270d5f
@ -101,8 +101,13 @@ subroutine msk144decodeframe(c,softbits,msgreceived,nsuccess,recent_calls,nrecen
|
|||||||
if( nharderror .ge. 0 .and. nharderror .lt. 18 ) then
|
if( nharderror .ge. 0 .and. nharderror .lt. 18 ) then
|
||||||
nsuccess=1
|
nsuccess=1
|
||||||
write(c77,'(77i1)') decoded77
|
write(c77,'(77i1)') decoded77
|
||||||
call unpack77(c77,msgreceived,unpk77_success)
|
read(c77(72:77),'(2b3)'),n3,i3
|
||||||
if(.not.unpk77_success) nsuccess=0
|
if( (i3.eq.0.and.(n3.eq.1 .or. n3.eq.3 .or. n3.eq.4 .or. n3.gt.5)) .or. i3.eq.3 .or. i3.gt.4 ) then
|
||||||
|
nsuccess=0
|
||||||
|
else
|
||||||
|
call unpack77(c77,msgreceived,unpk77_success)
|
||||||
|
if(.not.unpk77_success) nsuccess=0
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
return
|
return
|
||||||
|
Loading…
x
Reference in New Issue
Block a user