Correct UTC on waterfall for slow modes.

Tweak some GUI widget placements.
Send stderr to file wsjtx.log.
Fix formatting of std message with "R -7", etc., to "R-7".
Introduce calls to "timer".
Remove console.


git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@2727 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor
2012-11-14 15:30:21 +00:00
parent 95dd3a6803
commit 05322bb4f2
11 changed files with 64 additions and 25 deletions
+4 -2
View File
@@ -162,6 +162,7 @@ void CPlotter::UTCstr()
imin=ms/60000;
ihr=imin/60;
imin=imin % 60;
imin=imin - (imin % (m_TRperiod/60));
}
if(isec<30) isec=0;
if(isec>=30) isec=30;
@@ -551,9 +552,10 @@ double CPlotter::fGreen()
return m_fGreen;
}
void CPlotter::setNsps(int n) //setNSpan()
void CPlotter::setNsps(int ntrperiod, int nsps) //setNSpan()
{
m_nsps=n;
m_TRperiod=ntrperiod;
m_nsps=nsps;
m_fftBinWidth=1500.0/2048.0;
if(m_nsps==15360) m_fftBinWidth=1500.0/2048.0;
if(m_nsps==40960) m_fftBinWidth=1500.0/6144.0;