mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 21:58:38 -05:00
Add some comments; clean up a qDebug() output.
This commit is contained in:
parent
cbf8b35b8d
commit
cb9b39b13c
@ -674,8 +674,8 @@ subroutine split77(msg,nwords,nw,w)
|
||||
if(nwords.lt.3) go to 900
|
||||
call chkcall(w(3),bcall_1,ok1)
|
||||
if(ok1 .and. w(1)(1:3).eq.'CQ ') then
|
||||
w(1)='CQ_'//w(2)(1:10)
|
||||
w(2:12)=w(3:13)
|
||||
w(1)='CQ_'//w(2)(1:10) !Make "CQ " into "CQ_"
|
||||
w(2:12)=w(3:13) !Move all remeining words down by one
|
||||
nwords=nwords-1
|
||||
endif
|
||||
|
||||
|
@ -3500,7 +3500,8 @@ void MainWindow::guiUpdate()
|
||||
m_isync=1;
|
||||
if(!m_config.bGenerate77() and itype == 6 and (m_i3>0 or m_n3>0)) m_isync=2;
|
||||
if(m_config.bGenerate77()) m_isync=2;
|
||||
qDebug() << "itype=" << itype << "i3, n3:"<< m_i3 << m_n3 << "isync="<< m_isync << ui->tx6->text();
|
||||
qDebug() << "itype i3 n3 isync :" << itype << m_i3 << m_n3 << m_isync
|
||||
<< QString::fromStdString(message).trimmed();
|
||||
|
||||
int ft8msgbits[77];
|
||||
genft8_(message, MyGrid, &bcontest, &m_i3, &m_n3, &m_isync, msgsent,
|
||||
|
Loading…
Reference in New Issue
Block a user