mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-09-02 13:17:49 -04:00
Remove some unused variables.
This commit is contained in:
parent
662af6ff7e
commit
cb70a45817
@ -19,10 +19,10 @@ subroutine q65c(itimer)
|
|||||||
common/datcom2/dd(2,5760000),ss(322,NFFT),savg(NFFT),nparams0
|
common/datcom2/dd(2,5760000),ss(322,NFFT),savg(NFFT),nparams0
|
||||||
|
|
||||||
!### REMEMBER that /npar/ is not updated until nparams=nparams0 is executed. ###
|
!### REMEMBER that /npar/ is not updated until nparams=nparams0 is executed. ###
|
||||||
common/npar/fcenter,nutc,fselected,mousedf,mousefqso,nagain, &
|
common/npar/fcenter,nutc,fselected,mousedf,mousefqso,nagain, &
|
||||||
ndepth,ndiskdat,neme,newdat,nfa,nfb,nfcal,nfshift, &
|
ndepth,ndiskdat,neme,newdat,nfcal,nfshift, &
|
||||||
mcall3,nkeep,ntol,nxant,nrxlog,nfsample,nxpol,nmode, &
|
mcall3,nkeep,ntol,nxant,nrxlog,nfsample,nxpol,nmode, &
|
||||||
ndop00,nsave,max_drift,nhsym,mycall,mygrid,hiscall,hisgrid, &
|
ndop00,nsave,max_nhsym,mycall,mygrid,hiscall,hisgrid, &
|
||||||
datetime,junk1,junk2
|
datetime,junk1,junk2
|
||||||
equivalence (nparams,fcenter)
|
equivalence (nparams,fcenter)
|
||||||
data first/.true./
|
data first/.true./
|
||||||
|
@ -173,7 +173,6 @@ void SoundInThread::inputUDP()
|
|||||||
int ntr;
|
int ntr;
|
||||||
int nhsym0=0;
|
int nhsym0=0;
|
||||||
int iz=174;
|
int iz=174;
|
||||||
int nBusy=0;
|
|
||||||
|
|
||||||
// Main loop for input of UDP packets over the network:
|
// Main loop for input of UDP packets over the network:
|
||||||
while (!qe) {
|
while (!qe) {
|
||||||
@ -216,9 +215,7 @@ void SoundInThread::inputUDP()
|
|||||||
|
|
||||||
m_hsym=(k-2048)*11025.0/(2048.0*m_rate);
|
m_hsym=(k-2048)*11025.0/(2048.0*m_rate);
|
||||||
if(m_hsym != nhsym0) {
|
if(m_hsym != nhsym0) {
|
||||||
if(m_dataSinkBusy) {
|
if(!m_dataSinkBusy) {
|
||||||
nBusy++;
|
|
||||||
} else {
|
|
||||||
m_dataSinkBusy=true;
|
m_dataSinkBusy=true;
|
||||||
emit readyForFFT(k); //Signal to compute new FFTs
|
emit readyForFFT(k); //Signal to compute new FFTs
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user