Short decode cycles for 2nd half if we transmitted in 2nd half.

This commit is contained in:
Joe Taylor 2024-01-15 19:49:10 -05:00
parent 447127a49f
commit 6e6caa0d82
2 changed files with 3 additions and 4 deletions

View File

@ -73,10 +73,12 @@ subroutine q65c
enddo enddo
endif endif
if(nhsym.gt.200 .and. ntx30b.gt.5) go to 10
call timer('decode0 ',0) call timer('decode0 ',0)
call decode0(dd,ss,savg) call decode0(dd,ss,savg)
call timer('decode0 ',1) call timer('decode0 ',1)
10 continue
call date_and_time(VALUES=values) call date_and_time(VALUES=values)
n60b=values(7) n60b=values(7)
nd=n60b-n60 nd=n60b-n60

View File

@ -933,7 +933,7 @@ void MainWindow::decode() //decode()
} }
//No need to call decoder in second half, if we transmitted in that half: //No need to call decoder in second half, if we transmitted in that half:
if((datcom_.nhsym>200) and (m_nTx30b>5)) { if((datcom_.nhsym==330) and (m_nTx30b>5)) {
decodeBusy(false); decodeBusy(false);
return; return;
} }
@ -945,9 +945,6 @@ void MainWindow::decode() //decode()
memcpy(savecom_.saveFileName, m_saveFileName.toLatin1(),len1); memcpy(savecom_.saveFileName, m_saveFileName.toLatin1(),len1);
watcher3.setFuture(QtConcurrent::run (q65c_)); watcher3.setFuture(QtConcurrent::run (q65c_));
//,
// m_saveFileName.toLatin1().constData(),
// m_revision.toLatin1().constData(), len1, len2)));
decodeBusy(true); decodeBusy(true);
} }