Sent ntone_spacing to wb_sync. Change "debug print flag" from # to =.

This commit is contained in:
Joe Taylor 2021-05-06 14:50:05 -04:00
parent f864257838
commit 8b2e257e2c
2 changed files with 3 additions and 2 deletions

View File

@ -20,8 +20,9 @@ subroutine decode0(dd,ss,savg,nstandalone)
call timer('decode0 ',0)
nkhz_center=nint(1000.0*(fcenter-int(fcenter)))
ntone_spacing=2**(nmode/10)
call timer('wb_sync ',0)
call wb_sync(ss,savg)
call wb_sync(ss,savg,ntone_spacing)
call timer('wb_sync ',1)
if(newdat.ne.0) then

View File

@ -1420,7 +1420,7 @@ void MainWindow::readFromStdout() //readFromStdout
m_bandmapText += q;
}
}
if(t.indexOf("#") >= 0) {
if(t.indexOf("=") >= 0) {
int n=t.size();
qDebug() << t.mid(1,n-3).trimmed();
}