diff --git a/doc/user_guide/en/controls-functions-center.adoc b/doc/user_guide/en/controls-functions-center.adoc index db437cb23..4c8c360e1 100644 --- a/doc/user_guide/en/controls-functions-center.adoc +++ b/doc/user_guide/en/controls-functions-center.adoc @@ -56,7 +56,8 @@ and reception in ISCAT, MSK144, and the fast JT9 modes. MSK144 and the fast JT9 submodes you can activate the spinner control *Tx CQ nnn* by checking the box to its right. The program will then generate something like `CQ nnn K1ABC FN42` for your CQ message, where -`nnn` is the kHz portion of your current operating frequency. Your CQ +`nnn` is the kHz portion of your current operating frequency, +in the range 010 to 999. Your CQ message *Tx6* will then be transmitted at the calling frequency selected in the *Tx CQ nnn* spinner control. All other messages will be transmitted at your current operating frequency. On reception, diff --git a/lib/packjt.f90 b/lib/packjt.f90 index d7d90fb46..ad05b573b 100644 --- a/lib/packjt.f90 +++ b/lib/packjt.f90 @@ -429,6 +429,8 @@ subroutine packbits(dbits,nsymd,m0,sym) end if call fmtmsg(msg,iz) + if(msg(1:3).eq.'CQ ' .and. msg(4:4).ge.'0' .and. msg(4:4).le.'9' & + .and. msg(5:5).eq.' ') msg='CQ 00'//msg(4:) if(msg(1:6).eq.'CQ DX ') msg(3:3)='9' if(msg(1:3).eq.'CQ ' .and. & @@ -658,6 +660,9 @@ subroutine packbits(dbits,nsymd,m0,sym) if(bcontest) call fix_contest_msg(mygrid,msg) + if(msg(1:5).eq.'CQ 00' .and. msg(6:6).ge.'0' .and. & + msg(6:6).le.'9') msg='CQ '//msg(6:) + return end subroutine unpackmsg