mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-16 00:51:56 -05:00
Fix behavior of RxFreq in FT8 mode.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7738 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
a1783e5e7a
commit
8b6f3d8920
@ -78,7 +78,7 @@ subroutine ft8b(datetime,s,candidate,ncand)
|
|||||||
call extractmessage174(decoded,message,ncrcflag,recent_calls,nrecent)
|
call extractmessage174(decoded,message,ncrcflag,recent_calls,nrecent)
|
||||||
nsnr=nint(10.0*log10(sync) - 25.5) !### empirical ###
|
nsnr=nint(10.0*log10(sync) - 25.5) !### empirical ###
|
||||||
write(*,1112) datetime(8:13),nsnr,xdt,nint(f1),message
|
write(*,1112) datetime(8:13),nsnr,xdt,nint(f1),message
|
||||||
1112 format(a6,i4,f5.1,i6," ~ ",a22)
|
1112 format(a6,i4,f5.1,i5," ~ ",a22)
|
||||||
endif
|
endif
|
||||||
write(13,1110) datetime,0,nsnr,xdt,f1,xdta,f1a, &
|
write(13,1110) datetime,0,nsnr,xdt,f1,xdta,f1a, &
|
||||||
nharderrors,dmin,message
|
nharderrors,dmin,message
|
||||||
|
@ -4306,8 +4306,8 @@ void MainWindow::on_actionFT8_triggered()
|
|||||||
m_TRperiod=15;
|
m_TRperiod=15;
|
||||||
m_fastGraph->hide();
|
m_fastGraph->hide();
|
||||||
m_wideGraph->show();
|
m_wideGraph->show();
|
||||||
ui->decodedTextLabel->setText( " UTC dB DT Freq Message");
|
ui->decodedTextLabel->setText( " UTC dB DT Freq Message");
|
||||||
ui->decodedTextLabel2->setText(" UTC dB DT Freq Message");
|
ui->decodedTextLabel2->setText(" UTC dB DT Freq Message");
|
||||||
m_wideGraph->setPeriod(m_TRperiod,m_nsps);
|
m_wideGraph->setPeriod(m_TRperiod,m_nsps);
|
||||||
m_modulator->setPeriod(m_TRperiod); // TODO - not thread safe
|
m_modulator->setPeriod(m_TRperiod); // TODO - not thread safe
|
||||||
m_detector->setPeriod(m_TRperiod); // TODO - not thread safe
|
m_detector->setPeriod(m_TRperiod); // TODO - not thread safe
|
||||||
|
Loading…
Reference in New Issue
Block a user