kopia lustrzana https://github.com/f4exb/sdrangel
Typos.
rodzic
34b5a5992b
commit
1e8b20412c
|
@ -116,7 +116,7 @@ bool TCPSrc::handleMessage(Message* cmd)
|
|||
m_sampleDistanceRemain = m_inputSampleRate / m_outputSampleRate;
|
||||
cmd->completed();
|
||||
return true;
|
||||
} else if(DSPSignalNotification::match(cmd)) {
|
||||
} else if(MsgTCPSrcConfigure::match(cmd)) {
|
||||
MsgTCPSrcConfigure* cfg = (MsgTCPSrcConfigure*)cmd;
|
||||
m_sampleFormat = cfg->getSampleFormat();
|
||||
m_outputSampleRate = cfg->getOutputSampleRate();
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include "dsp/interpolator.h"
|
||||
#include "util/message.h"
|
||||
|
||||
#define ssbFftLen 1024
|
||||
#define ssbFftLen 2048
|
||||
|
||||
class QTcpServer;
|
||||
class QTcpSocket;
|
||||
|
|
|
@ -167,7 +167,7 @@ void TCPSrcGUI::applySettings()
|
|||
bool ok;
|
||||
|
||||
Real outputSampleRate = ui->sampleRate->text().toDouble(&ok);
|
||||
if((!ok) || (outputSampleRate < 100))
|
||||
if((!ok) || (outputSampleRate < 1000))
|
||||
outputSampleRate = 48000;
|
||||
Real rfBandwidth = ui->rfBandwidth->text().toDouble(&ok);
|
||||
if((!ok) || (rfBandwidth > outputSampleRate))
|
||||
|
|
|
@ -157,7 +157,7 @@
|
|||
<widget class="QTreeWidget" name="connections">
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>16777215</width>
|
||||
<width>400</width>
|
||||
<height>100</height>
|
||||
</size>
|
||||
</property>
|
||||
|
|
Ładowanie…
Reference in New Issue