mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-21 11:31:51 -05:00
Re-enable EU VHF Contest mode messages in MSK144 mode
Also bring message checking utilities up to date with the latest EU VHF Contest mode source encodings.
This commit is contained in:
parent
c44bcb1f44
commit
01dff71070
@ -65,7 +65,8 @@ program ft4code
|
||||
if(i3.eq.2) msgtype="EU VHF Contest"
|
||||
if(i3.eq.3) msgtype="ARRL RTTY Roundup"
|
||||
if(i3.eq.4) msgtype="Nonstandard calls"
|
||||
if(i3.ge.5) msgtype="Undefined msg type"
|
||||
if(i3.eq.5) msgtype="EU VHF Contest"
|
||||
if(i3.ge.6) msgtype="Undefined msg type"
|
||||
if(i3.ge.1) n3=-1
|
||||
bad=" "
|
||||
comment=' '
|
||||
|
@ -64,7 +64,8 @@ program ft8code
|
||||
if(i3.eq.2) msgtype="EU VHF Contest"
|
||||
if(i3.eq.3) msgtype="ARRL RTTY Roundup"
|
||||
if(i3.eq.4) msgtype="Nonstandard call"
|
||||
if(i3.ge.5) msgtype="Undefined type"
|
||||
if(i3.eq.5) msgtype="EU VHF Contest"
|
||||
if(i3.ge.6) msgtype="Undefined type"
|
||||
if(i3.ge.1) n3=-1
|
||||
bad=" "
|
||||
comment=' '
|
||||
|
@ -51,7 +51,8 @@ program msk144code
|
||||
if(i3.eq.2) msgtype="EU VHF Contest"
|
||||
if(i3.eq.3) msgtype="ARRL RTTY Roundup"
|
||||
if(i3.eq.4) msgtype="Nonstandard calls"
|
||||
if(i3.ge.5) msgtype="Undefined msg type"
|
||||
if(i3.eq.5) msgtype="EU VHF Contest"
|
||||
if(i3.ge.6) msgtype="Undefined msg type"
|
||||
if(i3.ge.1) n3=-1
|
||||
if(i4tone(41).lt.0) then
|
||||
msgtype="Sh msg"
|
||||
|
@ -100,7 +100,7 @@ subroutine msk144decodeframe(c,softbits,msgreceived,nsuccess)
|
||||
nsuccess=1
|
||||
write(c77,'(77i1)') decoded77
|
||||
read(c77(72:77),'(2b3)') n3,i3
|
||||
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
|
||||
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.5 ) then
|
||||
nsuccess=0
|
||||
else
|
||||
call unpack77(c77,1,msgreceived,unpk77_success)
|
||||
|
@ -5718,7 +5718,7 @@ void MainWindow::msgtype(QString t, QLineEdit* tx) //msgtype()
|
||||
p.setColor(QPalette::Base,"#66ffff"); //light blue
|
||||
} else {
|
||||
p.setColor(QPalette::Base,Qt::transparent);
|
||||
if(m_mode=="MSK144" and t.mid(0,1)=="<") {
|
||||
if ("MSK144" == m_mode && t.count ('<') == 1) {
|
||||
p.setColor(QPalette::Base,"#00ffff"); //another light blue
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user