mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-10 10:33:29 -05:00
UDPSource and UDPSink plugins: UI refactoring
This commit is contained in:
parent
ca722811cd
commit
c601d8dbaa
@ -30,6 +30,7 @@ MESSAGE_CLASS_DEFINITION(UDPSrc::MsgUDPSrcSpectrum, Message)
|
|||||||
|
|
||||||
UDPSrc::UDPSrc(MessageQueue* uiMessageQueue, UDPSrcGUI* udpSrcGUI, BasebandSampleSink* spectrum) :
|
UDPSrc::UDPSrc(MessageQueue* uiMessageQueue, UDPSrcGUI* udpSrcGUI, BasebandSampleSink* spectrum) :
|
||||||
m_udpPort(9999),
|
m_udpPort(9999),
|
||||||
|
m_gain(1.0),
|
||||||
m_audioActive(false),
|
m_audioActive(false),
|
||||||
m_audioStereo(false),
|
m_audioStereo(false),
|
||||||
m_volume(20),
|
m_volume(20),
|
||||||
@ -65,7 +66,6 @@ UDPSrc::UDPSrc(MessageQueue* uiMessageQueue, UDPSrcGUI* udpSrcGUI, BasebandSampl
|
|||||||
m_last = 0;
|
m_last = 0;
|
||||||
m_this = 0;
|
m_this = 0;
|
||||||
m_scale = 0;
|
m_scale = 0;
|
||||||
m_boost = 0;
|
|
||||||
m_magsq = 0;
|
m_magsq = 0;
|
||||||
UDPFilter = new fftfilt(0.0, (m_rfBandwidth / 2.0) / m_outputSampleRate, udpBlockSize);
|
UDPFilter = new fftfilt(0.0, (m_rfBandwidth / 2.0) / m_outputSampleRate, udpBlockSize);
|
||||||
|
|
||||||
@ -116,7 +116,7 @@ void UDPSrc::configure(MessageQueue* messageQueue,
|
|||||||
void UDPSrc::configureImmediate(MessageQueue* messageQueue,
|
void UDPSrc::configureImmediate(MessageQueue* messageQueue,
|
||||||
bool audioActive,
|
bool audioActive,
|
||||||
bool audioStereo,
|
bool audioStereo,
|
||||||
int boost,
|
Real boost,
|
||||||
int volume)
|
int volume)
|
||||||
{
|
{
|
||||||
Message* cmd = MsgUDPSrcConfigureImmediate::create(
|
Message* cmd = MsgUDPSrcConfigureImmediate::create(
|
||||||
@ -141,7 +141,6 @@ void UDPSrc::feed(const SampleVector::const_iterator& begin, const SampleVector:
|
|||||||
|
|
||||||
m_sampleBuffer.clear();
|
m_sampleBuffer.clear();
|
||||||
m_settingsMutex.lock();
|
m_settingsMutex.lock();
|
||||||
int rescale = (1 << m_boost);
|
|
||||||
|
|
||||||
for(SampleVector::const_iterator it = begin; it < end; ++it)
|
for(SampleVector::const_iterator it = begin; it < end; ++it)
|
||||||
{
|
{
|
||||||
@ -150,8 +149,8 @@ void UDPSrc::feed(const SampleVector::const_iterator& begin, const SampleVector:
|
|||||||
|
|
||||||
if(m_interpolator.decimate(&m_sampleDistanceRemain, c, &ci))
|
if(m_interpolator.decimate(&m_sampleDistanceRemain, c, &ci))
|
||||||
{
|
{
|
||||||
m_magsq = ((ci.real()*ci.real() + ci.imag()*ci.imag())*rescale*rescale) / (1<<30);
|
m_magsq = ((ci.real()*ci.real() + ci.imag()*ci.imag())*m_gain*m_gain) / (1<<30);
|
||||||
Sample s(ci.real() * rescale, ci.imag() * rescale);
|
Sample s(ci.real() * m_gain, ci.imag() * m_gain);
|
||||||
m_sampleBuffer.push_back(s);
|
m_sampleBuffer.push_back(s);
|
||||||
m_sampleDistanceRemain += m_inputSampleRate / m_outputSampleRate;
|
m_sampleDistanceRemain += m_inputSampleRate / m_outputSampleRate;
|
||||||
|
|
||||||
@ -298,9 +297,9 @@ bool UDPSrc::handleMessage(const Message& cmd)
|
|||||||
m_audioStereo = cfg.getAudioStereo();
|
m_audioStereo = cfg.getAudioStereo();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cfg.getBoost() != m_boost)
|
if (cfg.getGain() != m_gain)
|
||||||
{
|
{
|
||||||
m_boost = cfg.getBoost();
|
m_gain = cfg.getGain();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cfg.getVolume() != m_volume)
|
if (cfg.getVolume() != m_volume)
|
||||||
@ -313,7 +312,7 @@ bool UDPSrc::handleMessage(const Message& cmd)
|
|||||||
qDebug() << "UDPSrc::handleMessage: MsgUDPSrcConfigureImmediate: "
|
qDebug() << "UDPSrc::handleMessage: MsgUDPSrcConfigureImmediate: "
|
||||||
<< " m_audioActive: " << m_audioActive
|
<< " m_audioActive: " << m_audioActive
|
||||||
<< " m_audioStereo: " << m_audioStereo
|
<< " m_audioStereo: " << m_audioStereo
|
||||||
<< " m_boost: " << m_boost
|
<< " m_gain: " << m_gain
|
||||||
<< " m_volume: " << m_volume;
|
<< " m_volume: " << m_volume;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
@ -377,7 +376,6 @@ bool UDPSrc::handleMessage(const Message& cmd)
|
|||||||
qDebug() << "UDPSrc::handleMessage: MsgUDPSrcConfigure: m_sampleFormat: " << m_sampleFormat
|
qDebug() << "UDPSrc::handleMessage: MsgUDPSrcConfigure: m_sampleFormat: " << m_sampleFormat
|
||||||
<< " m_outputSampleRate: " << m_outputSampleRate
|
<< " m_outputSampleRate: " << m_outputSampleRate
|
||||||
<< " m_rfBandwidth: " << m_rfBandwidth
|
<< " m_rfBandwidth: " << m_rfBandwidth
|
||||||
<< " m_boost: " << m_boost
|
|
||||||
<< " m_udpAddressStr: " << m_udpAddressStr
|
<< " m_udpAddressStr: " << m_udpAddressStr
|
||||||
<< " m_udpPort: " << m_udpPort
|
<< " m_udpPort: " << m_udpPort
|
||||||
<< " m_audioPort: " << m_audioPort;
|
<< " m_audioPort: " << m_audioPort;
|
||||||
|
@ -70,7 +70,7 @@ public:
|
|||||||
void configureImmediate(MessageQueue* messageQueue,
|
void configureImmediate(MessageQueue* messageQueue,
|
||||||
bool audioActive,
|
bool audioActive,
|
||||||
bool audioStereo,
|
bool audioStereo,
|
||||||
int boost,
|
Real gain,
|
||||||
int volume);
|
int volume);
|
||||||
void setSpectrum(MessageQueue* messageQueue, bool enabled);
|
void setSpectrum(MessageQueue* messageQueue, bool enabled);
|
||||||
double getMagSq() const { return m_magsq; }
|
double getMagSq() const { return m_magsq; }
|
||||||
@ -147,7 +147,7 @@ protected:
|
|||||||
MESSAGE_CLASS_DECLARATION
|
MESSAGE_CLASS_DECLARATION
|
||||||
|
|
||||||
public:
|
public:
|
||||||
int getBoost() const { return m_boost; }
|
Real getGain() const { return m_gain; }
|
||||||
int getVolume() const { return m_volume; }
|
int getVolume() const { return m_volume; }
|
||||||
bool getAudioActive() const { return m_audioActive; }
|
bool getAudioActive() const { return m_audioActive; }
|
||||||
bool getAudioStereo() const { return m_audioStereo; }
|
bool getAudioStereo() const { return m_audioStereo; }
|
||||||
@ -166,7 +166,7 @@ protected:
|
|||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
int m_boost;
|
Real m_gain;
|
||||||
int m_volume;
|
int m_volume;
|
||||||
bool m_audioActive;
|
bool m_audioActive;
|
||||||
bool m_audioStereo;
|
bool m_audioStereo;
|
||||||
@ -174,10 +174,10 @@ protected:
|
|||||||
MsgUDPSrcConfigureImmediate(
|
MsgUDPSrcConfigureImmediate(
|
||||||
bool audioActive,
|
bool audioActive,
|
||||||
bool audioStereo,
|
bool audioStereo,
|
||||||
int boost,
|
Real gain,
|
||||||
int volume) :
|
int volume) :
|
||||||
Message(),
|
Message(),
|
||||||
m_boost(boost),
|
m_gain(gain),
|
||||||
m_volume(volume),
|
m_volume(volume),
|
||||||
m_audioActive(audioActive),
|
m_audioActive(audioActive),
|
||||||
m_audioStereo(audioStereo)
|
m_audioStereo(audioStereo)
|
||||||
@ -216,7 +216,7 @@ protected:
|
|||||||
QString m_udpAddressStr;
|
QString m_udpAddressStr;
|
||||||
quint16 m_udpPort;
|
quint16 m_udpPort;
|
||||||
quint16 m_audioPort;
|
quint16 m_audioPort;
|
||||||
int m_boost;
|
Real m_gain;
|
||||||
bool m_audioActive;
|
bool m_audioActive;
|
||||||
bool m_audioStereo;
|
bool m_audioStereo;
|
||||||
int m_volume;
|
int m_volume;
|
||||||
|
@ -77,7 +77,7 @@ void UDPSrcGUI::resetToDefaults()
|
|||||||
ui->udpPort->setText("9999");
|
ui->udpPort->setText("9999");
|
||||||
ui->audioPort->setText("9999");
|
ui->audioPort->setText("9999");
|
||||||
ui->spectrumGUI->resetToDefaults();
|
ui->spectrumGUI->resetToDefaults();
|
||||||
ui->boost->setValue(1);
|
ui->gain->setValue(10);
|
||||||
ui->volume->setValue(20);
|
ui->volume->setValue(20);
|
||||||
ui->audioActive->setChecked(false);
|
ui->audioActive->setChecked(false);
|
||||||
ui->audioStereo->setChecked(false);
|
ui->audioStereo->setChecked(false);
|
||||||
@ -97,7 +97,7 @@ QByteArray UDPSrcGUI::serialize() const
|
|||||||
s.writeReal(5, m_rfBandwidth);
|
s.writeReal(5, m_rfBandwidth);
|
||||||
s.writeS32(6, m_udpPort);
|
s.writeS32(6, m_udpPort);
|
||||||
s.writeBlob(7, ui->spectrumGUI->serialize());
|
s.writeBlob(7, ui->spectrumGUI->serialize());
|
||||||
s.writeS32(8, (qint32)m_boost);
|
s.writeS32(8, ui->gain->value());
|
||||||
s.writeS32(9, m_channelMarker.getCenterFrequency());
|
s.writeS32(9, m_channelMarker.getCenterFrequency());
|
||||||
s.writeString(10, m_udpAddress);
|
s.writeString(10, m_udpAddress);
|
||||||
s.writeBool(11, m_audioActive);
|
s.writeBool(11, m_audioActive);
|
||||||
@ -171,8 +171,9 @@ bool UDPSrcGUI::deserialize(const QByteArray& data)
|
|||||||
ui->udpPort->setText(QString("%1").arg(s32tmp));
|
ui->udpPort->setText(QString("%1").arg(s32tmp));
|
||||||
d.readBlob(7, &bytetmp);
|
d.readBlob(7, &bytetmp);
|
||||||
ui->spectrumGUI->deserialize(bytetmp);
|
ui->spectrumGUI->deserialize(bytetmp);
|
||||||
d.readS32(8, &s32tmp, 1);
|
d.readS32(16, &s32tmp, 10);
|
||||||
ui->boost->setValue(s32tmp);
|
ui->gain->setValue(s32tmp);
|
||||||
|
ui->gainText->setText(tr("%1").arg(s32tmp/10.0, 0, 'f', 1));
|
||||||
d.readS32(9, &s32tmp, 0);
|
d.readS32(9, &s32tmp, 0);
|
||||||
m_channelMarker.setCenterFrequency(s32tmp);
|
m_channelMarker.setCenterFrequency(s32tmp);
|
||||||
d.readString(10, &strtmp, "127.0.0.1");
|
d.readString(10, &strtmp, "127.0.0.1");
|
||||||
@ -181,6 +182,7 @@ bool UDPSrcGUI::deserialize(const QByteArray& data)
|
|||||||
ui->audioActive->setChecked(booltmp);
|
ui->audioActive->setChecked(booltmp);
|
||||||
d.readS32(12, &s32tmp, 20);
|
d.readS32(12, &s32tmp, 20);
|
||||||
ui->volume->setValue(s32tmp);
|
ui->volume->setValue(s32tmp);
|
||||||
|
ui->volumeText->setText(QString("%1").arg(s32tmp));
|
||||||
d.readS32(13, &s32tmp, 9998);
|
d.readS32(13, &s32tmp, 9998);
|
||||||
ui->audioPort->setText(QString("%1").arg(s32tmp));
|
ui->audioPort->setText(QString("%1").arg(s32tmp));
|
||||||
d.readBool(14, &booltmp, false);
|
d.readBool(14, &booltmp, false);
|
||||||
@ -215,9 +217,14 @@ void UDPSrcGUI::channelMarkerChanged()
|
|||||||
|
|
||||||
void UDPSrcGUI::tick()
|
void UDPSrcGUI::tick()
|
||||||
{
|
{
|
||||||
double powDb = CalcDb::dbPower(m_udpSrc->getMagSq());
|
if (m_tickCount % 4 == 0)
|
||||||
m_channelPowerDbAvg.feed(powDb);
|
{
|
||||||
ui->channelPower->setText(QString::number(m_channelPowerDbAvg.average(), 'f', 1));
|
m_channelPowerAvg.feed(m_udpSrc->getMagSq());
|
||||||
|
double powDb = CalcDb::dbPower(m_channelPowerAvg.average());
|
||||||
|
ui->channelPower->setText(QString::number(powDb, 'f', 1));
|
||||||
|
}
|
||||||
|
|
||||||
|
m_tickCount++;
|
||||||
}
|
}
|
||||||
|
|
||||||
UDPSrcGUI::UDPSrcGUI(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI, QWidget* parent) :
|
UDPSrcGUI::UDPSrcGUI(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI, QWidget* parent) :
|
||||||
@ -227,8 +234,9 @@ UDPSrcGUI::UDPSrcGUI(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI, QWidget*
|
|||||||
m_deviceAPI(deviceAPI),
|
m_deviceAPI(deviceAPI),
|
||||||
m_udpSrc(0),
|
m_udpSrc(0),
|
||||||
m_channelMarker(this),
|
m_channelMarker(this),
|
||||||
m_channelPowerDbAvg(40,0),
|
m_channelPowerAvg(4, 1e-10),
|
||||||
m_boost(1),
|
m_tickCount(0),
|
||||||
|
m_gain(1.0),
|
||||||
m_volume(20),
|
m_volume(20),
|
||||||
m_basicSettingsShown(false),
|
m_basicSettingsShown(false),
|
||||||
m_doApplySettings(true)
|
m_doApplySettings(true)
|
||||||
@ -273,6 +281,7 @@ UDPSrcGUI::UDPSrcGUI(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI, QWidget*
|
|||||||
|
|
||||||
ui->spectrumGUI->setBuddies(m_spectrumVis->getInputMessageQueue(), m_spectrumVis, ui->glSpectrum);
|
ui->spectrumGUI->setBuddies(m_spectrumVis->getInputMessageQueue(), m_spectrumVis, ui->glSpectrum);
|
||||||
|
|
||||||
|
displaySettings();
|
||||||
applySettingsImmediate();
|
applySettingsImmediate();
|
||||||
applySettings();
|
applySettings();
|
||||||
}
|
}
|
||||||
@ -294,19 +303,25 @@ void UDPSrcGUI::blockApplySettings(bool block)
|
|||||||
m_doApplySettings = !block;
|
m_doApplySettings = !block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void UDPSrcGUI::displaySettings()
|
||||||
|
{
|
||||||
|
ui->gainText->setText(tr("%1").arg(ui->gain->value()/10.0, 0, 'f', 1));
|
||||||
|
ui->volumeText->setText(QString("%1").arg(ui->volume->value()));
|
||||||
|
}
|
||||||
|
|
||||||
void UDPSrcGUI::applySettingsImmediate()
|
void UDPSrcGUI::applySettingsImmediate()
|
||||||
{
|
{
|
||||||
if (m_doApplySettings)
|
if (m_doApplySettings)
|
||||||
{
|
{
|
||||||
m_audioActive = ui->audioActive->isChecked();
|
m_audioActive = ui->audioActive->isChecked();
|
||||||
m_audioStereo = ui->audioStereo->isChecked();
|
m_audioStereo = ui->audioStereo->isChecked();
|
||||||
m_boost = ui->boost->value();
|
m_gain = ui->gain->value() / 10.0;
|
||||||
m_volume = ui->volume->value();
|
m_volume = ui->volume->value();
|
||||||
|
|
||||||
m_udpSrc->configureImmediate(m_udpSrc->getInputMessageQueue(),
|
m_udpSrc->configureImmediate(m_udpSrc->getInputMessageQueue(),
|
||||||
m_audioActive,
|
m_audioActive,
|
||||||
m_audioStereo,
|
m_audioStereo,
|
||||||
m_boost,
|
m_gain,
|
||||||
m_volume);
|
m_volume);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -355,8 +370,6 @@ void UDPSrcGUI::applySettings()
|
|||||||
fmDeviation = 2500;
|
fmDeviation = 2500;
|
||||||
}
|
}
|
||||||
|
|
||||||
int boost = ui->boost->value();
|
|
||||||
|
|
||||||
setTitleColor(m_channelMarker.getColor());
|
setTitleColor(m_channelMarker.getColor());
|
||||||
ui->deltaFrequency->setValue(m_channelMarker.getCenterFrequency());
|
ui->deltaFrequency->setValue(m_channelMarker.getCenterFrequency());
|
||||||
ui->sampleRate->setText(QString("%1").arg(outputSampleRate, 0));
|
ui->sampleRate->setText(QString("%1").arg(outputSampleRate, 0));
|
||||||
@ -365,7 +378,6 @@ void UDPSrcGUI::applySettings()
|
|||||||
ui->udpPort->setText(QString("%1").arg(udpPort));
|
ui->udpPort->setText(QString("%1").arg(udpPort));
|
||||||
ui->audioPort->setText(QString("%1").arg(audioPort));
|
ui->audioPort->setText(QString("%1").arg(audioPort));
|
||||||
ui->fmDeviation->setText(QString("%1").arg(fmDeviation));
|
ui->fmDeviation->setText(QString("%1").arg(fmDeviation));
|
||||||
ui->boost->setValue(boost);
|
|
||||||
m_channelMarker.disconnect(this, SLOT(channelMarkerChanged()));
|
m_channelMarker.disconnect(this, SLOT(channelMarkerChanged()));
|
||||||
m_channelMarker.setBandwidth((int)rfBandwidth);
|
m_channelMarker.setBandwidth((int)rfBandwidth);
|
||||||
connect(&m_channelMarker, SIGNAL(changed()), this, SLOT(channelMarkerChanged()));
|
connect(&m_channelMarker, SIGNAL(changed()), this, SLOT(channelMarkerChanged()));
|
||||||
@ -423,7 +435,6 @@ void UDPSrcGUI::applySettings()
|
|||||||
m_fmDeviation = fmDeviation;
|
m_fmDeviation = fmDeviation;
|
||||||
m_udpPort = udpPort;
|
m_udpPort = udpPort;
|
||||||
m_audioPort = audioPort;
|
m_audioPort = audioPort;
|
||||||
m_boost = boost;
|
|
||||||
|
|
||||||
m_udpSrc->configure(m_udpSrc->getInputMessageQueue(),
|
m_udpSrc->configure(m_udpSrc->getInputMessageQueue(),
|
||||||
sampleFormat,
|
sampleFormat,
|
||||||
@ -499,10 +510,9 @@ void UDPSrcGUI::on_audioStereo_toggled(bool stereo __attribute__((unused)))
|
|||||||
applySettingsImmediate();
|
applySettingsImmediate();
|
||||||
}
|
}
|
||||||
|
|
||||||
void UDPSrcGUI::on_boost_valueChanged(int value)
|
void UDPSrcGUI::on_gain_valueChanged(int value)
|
||||||
{
|
{
|
||||||
ui->boost->setValue(value);
|
ui->gainText->setText(tr("%1").arg(value/10.0, 0, 'f', 1));
|
||||||
ui->boostText->setText(QString("%1").arg(value));
|
|
||||||
applySettingsImmediate();
|
applySettingsImmediate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@ private slots:
|
|||||||
void on_applyBtn_clicked();
|
void on_applyBtn_clicked();
|
||||||
void onWidgetRolled(QWidget* widget, bool rollDown);
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
||||||
void onMenuDoubleClicked();
|
void onMenuDoubleClicked();
|
||||||
void on_boost_valueChanged(int value);
|
void on_gain_valueChanged(int value);
|
||||||
void on_volume_valueChanged(int value);
|
void on_volume_valueChanged(int value);
|
||||||
void tick();
|
void tick();
|
||||||
|
|
||||||
@ -82,14 +82,15 @@ private:
|
|||||||
DeviceSourceAPI* m_deviceAPI;
|
DeviceSourceAPI* m_deviceAPI;
|
||||||
UDPSrc* m_udpSrc;
|
UDPSrc* m_udpSrc;
|
||||||
ChannelMarker m_channelMarker;
|
ChannelMarker m_channelMarker;
|
||||||
MovingAverage<double> m_channelPowerDbAvg;
|
MovingAverage<double> m_channelPowerAvg;
|
||||||
|
uint32_t m_tickCount;
|
||||||
|
|
||||||
// settings
|
// settings
|
||||||
UDPSrc::SampleFormat m_sampleFormat;
|
UDPSrc::SampleFormat m_sampleFormat;
|
||||||
Real m_outputSampleRate;
|
Real m_outputSampleRate;
|
||||||
Real m_rfBandwidth;
|
Real m_rfBandwidth;
|
||||||
int m_fmDeviation;
|
int m_fmDeviation;
|
||||||
int m_boost;
|
Real m_gain;
|
||||||
bool m_audioActive;
|
bool m_audioActive;
|
||||||
bool m_audioStereo;
|
bool m_audioStereo;
|
||||||
int m_volume;
|
int m_volume;
|
||||||
@ -110,6 +111,7 @@ private:
|
|||||||
void blockApplySettings(bool block);
|
void blockApplySettings(bool block);
|
||||||
void applySettings();
|
void applySettings();
|
||||||
void applySettingsImmediate();
|
void applySettingsImmediate();
|
||||||
|
void displaySettings();
|
||||||
|
|
||||||
void leaveEvent(QEvent*);
|
void leaveEvent(QEvent*);
|
||||||
void enterEvent(QEvent*);
|
void enterEvent(QEvent*);
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>316</width>
|
<width>351</width>
|
||||||
<height>355</height>
|
<height>355</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@ -36,13 +36,13 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>2</x>
|
<x>2</x>
|
||||||
<y>2</y>
|
<y>2</y>
|
||||||
<width>312</width>
|
<width>340</width>
|
||||||
<height>142</height>
|
<height>142</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>312</width>
|
<width>340</width>
|
||||||
<height>0</height>
|
<height>0</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
@ -65,13 +65,6 @@
|
|||||||
<property name="spacing">
|
<property name="spacing">
|
||||||
<number>3</number>
|
<number>3</number>
|
||||||
</property>
|
</property>
|
||||||
<item row="1" column="0">
|
|
||||||
<widget class="QLabel" name="label">
|
|
||||||
<property name="text">
|
|
||||||
<string>Format</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="0" column="1">
|
<item row="0" column="1">
|
||||||
<layout class="QHBoxLayout" name="ChannelPowerLayout">
|
<layout class="QHBoxLayout" name="ChannelPowerLayout">
|
||||||
<item>
|
<item>
|
||||||
@ -89,14 +82,23 @@
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="channelPower">
|
<widget class="QLabel" name="channelPower">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Channel power</string>
|
<string>Channel output power (dB)</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="layoutDirection">
|
<property name="layoutDirection">
|
||||||
<enum>Qt::LeftToRight</enum>
|
<enum>Qt::LeftToRight</enum>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>0.0</string>
|
<string>-100.0</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -109,47 +111,6 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item row="1" column="1">
|
|
||||||
<widget class="QLabel" name="label_2">
|
|
||||||
<property name="text">
|
|
||||||
<string>Rate (Hz)</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="6" column="1">
|
|
||||||
<layout class="QHBoxLayout" name="BoostLayout">
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="boostLabel">
|
|
||||||
<property name="text">
|
|
||||||
<string>Boost</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QSlider" name="boost">
|
|
||||||
<property name="toolTip">
|
|
||||||
<string>Signal boost factor</string>
|
|
||||||
</property>
|
|
||||||
<property name="maximum">
|
|
||||||
<number>3</number>
|
|
||||||
</property>
|
|
||||||
<property name="pageStep">
|
|
||||||
<number>1</number>
|
|
||||||
</property>
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="boostText">
|
|
||||||
<property name="text">
|
|
||||||
<string>0</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
<item row="0" column="0">
|
<item row="0" column="0">
|
||||||
<layout class="QHBoxLayout" name="DeltaFrequencyLayout">
|
<layout class="QHBoxLayout" name="DeltaFrequencyLayout">
|
||||||
<property name="topMargin">
|
<property name="topMargin">
|
||||||
@ -277,7 +238,7 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item row="5" column="0">
|
<item row="6" column="0">
|
||||||
<layout class="QHBoxLayout" name="PortLayout">
|
<layout class="QHBoxLayout" name="PortLayout">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="udpPortlabel">
|
<widget class="QLabel" name="udpPortlabel">
|
||||||
@ -321,29 +282,12 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item row="3" column="1">
|
<item row="7" column="0">
|
||||||
<widget class="QLabel" name="label_3">
|
|
||||||
<property name="text">
|
|
||||||
<string>RF BW (Hz)</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="5" column="1">
|
|
||||||
<widget class="QLineEdit" name="rfBandwidth">
|
|
||||||
<property name="toolTip">
|
|
||||||
<string>Signal bandwidth</string>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>32000</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="6" column="0">
|
|
||||||
<layout class="QHBoxLayout" name="AudioPortLayout">
|
<layout class="QHBoxLayout" name="AudioPortLayout">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="fmDevLabel">
|
<widget class="QLabel" name="fmDevLabel">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>FMd (Hz)</string>
|
<string>FMd</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -395,67 +339,7 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item row="2" column="1">
|
<item row="4" column="0">
|
||||||
<widget class="QLineEdit" name="sampleRate">
|
|
||||||
<property name="toolTip">
|
|
||||||
<string>Samples rate</string>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>48000</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="2" column="0">
|
|
||||||
<widget class="QComboBox" name="sampleFormat">
|
|
||||||
<property name="toolTip">
|
|
||||||
<string>Samples format</string>
|
|
||||||
</property>
|
|
||||||
<property name="currentIndex">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<item>
|
|
||||||
<property name="text">
|
|
||||||
<string>S16LE I/Q</string>
|
|
||||||
</property>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<property name="text">
|
|
||||||
<string>S16LE NFM</string>
|
|
||||||
</property>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<property name="text">
|
|
||||||
<string>S16LE NFM Mono</string>
|
|
||||||
</property>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<property name="text">
|
|
||||||
<string>S16LE LSB</string>
|
|
||||||
</property>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<property name="text">
|
|
||||||
<string>S16LE USB</string>
|
|
||||||
</property>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<property name="text">
|
|
||||||
<string>S16LE LSB Mono</string>
|
|
||||||
</property>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<property name="text">
|
|
||||||
<string>S16LE USB Mono</string>
|
|
||||||
</property>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<property name="text">
|
|
||||||
<string>S16LE AM Mono</string>
|
|
||||||
</property>
|
|
||||||
</item>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="3" column="0">
|
|
||||||
<layout class="QHBoxLayout" name="AddressLayout">
|
<layout class="QHBoxLayout" name="AddressLayout">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="Addresslabel">
|
<widget class="QLabel" name="Addresslabel">
|
||||||
@ -479,7 +363,7 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item row="7" column="0">
|
<item row="8" column="0">
|
||||||
<layout class="QHBoxLayout" name="VolumeLayout">
|
<layout class="QHBoxLayout" name="VolumeLayout">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="volumeLabel">
|
<widget class="QLabel" name="volumeLabel">
|
||||||
@ -509,9 +393,176 @@
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="volumeText">
|
<widget class="QLabel" name="volumeText">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>18</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>20</string>
|
<string>20</string>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="0">
|
||||||
|
<layout class="QHBoxLayout" name="FormatLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label">
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>30</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Fmt</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QComboBox" name="sampleFormat">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Samples format</string>
|
||||||
|
</property>
|
||||||
|
<property name="currentIndex">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>S16LE I/Q</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>S16LE NFM</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>S16LE NFM Mono</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>S16LE LSB</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>S16LE USB</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>S16LE LSB Mono</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>S16LE USB Mono</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>S16LE AM Mono</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="1">
|
||||||
|
<layout class="QHBoxLayout" name="SampleRateLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="sampleRateLabel">
|
||||||
|
<property name="text">
|
||||||
|
<string>SRout</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLineEdit" name="sampleRate">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Output sample rate (S/s)</string>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>48000</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item row="4" column="1">
|
||||||
|
<layout class="QHBoxLayout" name="RFBandwidthLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="rfBandwidthLabel">
|
||||||
|
<property name="text">
|
||||||
|
<string>RFBW</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLineEdit" name="rfBandwidth">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Signal bandwidth (Hz)</string>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>32000</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item row="6" column="1">
|
||||||
|
<layout class="QHBoxLayout" name="GainLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="gainLabel">
|
||||||
|
<property name="text">
|
||||||
|
<string>Gain</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSlider" name="gain">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Output linear gain</string>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>100</number>
|
||||||
|
</property>
|
||||||
|
<property name="pageStep">
|
||||||
|
<number>1</number>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<number>10</number>
|
||||||
|
</property>
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="gainText">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>28</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Output linear gain</string>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>00.0</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
@ -601,11 +652,6 @@
|
|||||||
<container>1</container>
|
<container>1</container>
|
||||||
</customwidget>
|
</customwidget>
|
||||||
</customwidgets>
|
</customwidgets>
|
||||||
<tabstops>
|
|
||||||
<tabstop>sampleFormat</tabstop>
|
|
||||||
<tabstop>sampleRate</tabstop>
|
|
||||||
<tabstop>rfBandwidth</tabstop>
|
|
||||||
</tabstops>
|
|
||||||
<resources>
|
<resources>
|
||||||
<include location="../../../sdrbase/resources/res.qrc"/>
|
<include location="../../../sdrbase/resources/res.qrc"/>
|
||||||
</resources>
|
</resources>
|
||||||
|
@ -128,8 +128,8 @@ void UDPSink::modulateSample()
|
|||||||
|
|
||||||
if (m_squelchOpen)
|
if (m_squelchOpen)
|
||||||
{
|
{
|
||||||
m_modSample.real(s.m_real * m_running.m_volume);
|
m_modSample.real(s.m_real * m_running.m_gain);
|
||||||
m_modSample.imag(s.m_imag * m_running.m_volume);
|
m_modSample.imag(s.m_imag * m_running.m_gain);
|
||||||
calculateLevel(m_modSample);
|
calculateLevel(m_modSample);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -230,7 +230,7 @@ bool UDPSink::handleMessage(const Message& cmd)
|
|||||||
m_config.m_udpAddressStr = cfg.getUDPAddress();
|
m_config.m_udpAddressStr = cfg.getUDPAddress();
|
||||||
m_config.m_udpPort = cfg.getUDPPort();
|
m_config.m_udpPort = cfg.getUDPPort();
|
||||||
m_config.m_channelMute = cfg.getChannelMute();
|
m_config.m_channelMute = cfg.getChannelMute();
|
||||||
m_config.m_volume = cfg.getVolume();
|
m_config.m_gain = cfg.getGain();
|
||||||
m_config.m_squelch = CalcDb::powerFromdB(cfg.getSquelchDB());
|
m_config.m_squelch = CalcDb::powerFromdB(cfg.getSquelchDB());
|
||||||
|
|
||||||
apply(cfg.getForce());
|
apply(cfg.getForce());
|
||||||
@ -243,7 +243,7 @@ bool UDPSink::handleMessage(const Message& cmd)
|
|||||||
<< " m_udpAddressStr: " << m_config.m_udpAddressStr
|
<< " m_udpAddressStr: " << m_config.m_udpAddressStr
|
||||||
<< " m_udpPort: " << m_config.m_udpPort
|
<< " m_udpPort: " << m_config.m_udpPort
|
||||||
<< " m_channelMute: " << m_config.m_channelMute
|
<< " m_channelMute: " << m_config.m_channelMute
|
||||||
<< " m_volume: " << m_config.m_volume
|
<< " m_gain: " << m_config.m_gain
|
||||||
<< " squelchDB: " << cfg.getSquelchDB()
|
<< " squelchDB: " << cfg.getSquelchDB()
|
||||||
<< " m_squelch: " << m_config.m_squelch;
|
<< " m_squelch: " << m_config.m_squelch;
|
||||||
|
|
||||||
@ -330,7 +330,7 @@ void UDPSink::configure(MessageQueue* messageQueue,
|
|||||||
QString& udpAddress,
|
QString& udpAddress,
|
||||||
int udpPort,
|
int udpPort,
|
||||||
bool channelMute,
|
bool channelMute,
|
||||||
Real volume,
|
Real gain,
|
||||||
Real squelchDB,
|
Real squelchDB,
|
||||||
bool force)
|
bool force)
|
||||||
{
|
{
|
||||||
@ -341,7 +341,7 @@ void UDPSink::configure(MessageQueue* messageQueue,
|
|||||||
udpAddress,
|
udpAddress,
|
||||||
udpPort,
|
udpPort,
|
||||||
channelMute,
|
channelMute,
|
||||||
volume,
|
gain,
|
||||||
squelchDB,
|
squelchDB,
|
||||||
force);
|
force);
|
||||||
messageQueue->push(cmd);
|
messageQueue->push(cmd);
|
||||||
|
@ -67,7 +67,7 @@ public:
|
|||||||
QString& udpAddress,
|
QString& udpAddress,
|
||||||
int udpPort,
|
int udpPort,
|
||||||
bool channelMute,
|
bool channelMute,
|
||||||
Real volume,
|
Real gain,
|
||||||
Real squelchDB,
|
Real squelchDB,
|
||||||
bool force = false);
|
bool force = false);
|
||||||
void setSpectrum(MessageQueue* messageQueue, bool enabled);
|
void setSpectrum(MessageQueue* messageQueue, bool enabled);
|
||||||
@ -93,7 +93,7 @@ private:
|
|||||||
const QString& getUDPAddress() const { return m_udpAddress; }
|
const QString& getUDPAddress() const { return m_udpAddress; }
|
||||||
int getUDPPort() const { return m_udpPort; }
|
int getUDPPort() const { return m_udpPort; }
|
||||||
bool getChannelMute() const { return m_channelMute; }
|
bool getChannelMute() const { return m_channelMute; }
|
||||||
Real getVolume() const { return m_volume; }
|
Real getGain() const { return m_gain; }
|
||||||
Real getSquelchDB() const { return m_squelchDB; }
|
Real getSquelchDB() const { return m_squelchDB; }
|
||||||
bool getForce() const { return m_force; }
|
bool getForce() const { return m_force; }
|
||||||
|
|
||||||
@ -105,7 +105,7 @@ private:
|
|||||||
QString& udpAddress,
|
QString& udpAddress,
|
||||||
int udpPort,
|
int udpPort,
|
||||||
bool channelMute,
|
bool channelMute,
|
||||||
Real volume,
|
Real gain,
|
||||||
Real squelchDB,
|
Real squelchDB,
|
||||||
bool force)
|
bool force)
|
||||||
{
|
{
|
||||||
@ -116,7 +116,7 @@ private:
|
|||||||
udpAddress,
|
udpAddress,
|
||||||
udpPort,
|
udpPort,
|
||||||
channelMute,
|
channelMute,
|
||||||
volume,
|
gain,
|
||||||
squelchDB,
|
squelchDB,
|
||||||
force);
|
force);
|
||||||
}
|
}
|
||||||
@ -129,7 +129,7 @@ private:
|
|||||||
QString m_udpAddress;
|
QString m_udpAddress;
|
||||||
int m_udpPort;
|
int m_udpPort;
|
||||||
bool m_channelMute;
|
bool m_channelMute;
|
||||||
Real m_volume;
|
Real m_gain;
|
||||||
Real m_squelchDB;
|
Real m_squelchDB;
|
||||||
bool m_force;
|
bool m_force;
|
||||||
|
|
||||||
@ -140,7 +140,7 @@ private:
|
|||||||
QString& udpAddress,
|
QString& udpAddress,
|
||||||
int udpPort,
|
int udpPort,
|
||||||
bool channelMute,
|
bool channelMute,
|
||||||
Real volume,
|
Real gain,
|
||||||
Real squelchDB,
|
Real squelchDB,
|
||||||
bool force) :
|
bool force) :
|
||||||
Message(),
|
Message(),
|
||||||
@ -151,7 +151,7 @@ private:
|
|||||||
m_udpAddress(udpAddress),
|
m_udpAddress(udpAddress),
|
||||||
m_udpPort(udpPort),
|
m_udpPort(udpPort),
|
||||||
m_channelMute(channelMute),
|
m_channelMute(channelMute),
|
||||||
m_volume(volume),
|
m_gain(gain),
|
||||||
m_squelchDB(squelchDB),
|
m_squelchDB(squelchDB),
|
||||||
m_force(force)
|
m_force(force)
|
||||||
{ }
|
{ }
|
||||||
@ -186,7 +186,7 @@ private:
|
|||||||
Real m_rfBandwidth;
|
Real m_rfBandwidth;
|
||||||
int m_fmDeviation;
|
int m_fmDeviation;
|
||||||
bool m_channelMute;
|
bool m_channelMute;
|
||||||
Real m_volume;
|
Real m_gain;
|
||||||
Real m_squelch; //!< squared magnitude
|
Real m_squelch; //!< squared magnitude
|
||||||
|
|
||||||
QString m_udpAddressStr;
|
QString m_udpAddressStr;
|
||||||
@ -201,7 +201,7 @@ private:
|
|||||||
m_rfBandwidth(12500),
|
m_rfBandwidth(12500),
|
||||||
m_fmDeviation(1.0),
|
m_fmDeviation(1.0),
|
||||||
m_channelMute(false),
|
m_channelMute(false),
|
||||||
m_volume(1.0),
|
m_gain(1.0),
|
||||||
m_squelch(-50.0),
|
m_squelch(-50.0),
|
||||||
m_udpAddressStr("127.0.0.1"),
|
m_udpAddressStr("127.0.0.1"),
|
||||||
m_udpPort(9999)
|
m_udpPort(9999)
|
||||||
|
@ -71,7 +71,7 @@ void UDPSinkGUI::resetToDefaults()
|
|||||||
ui->udpAddress->setText("127.0.0.1");
|
ui->udpAddress->setText("127.0.0.1");
|
||||||
ui->udpPort->setText("9999");
|
ui->udpPort->setText("9999");
|
||||||
ui->spectrumGUI->resetToDefaults();
|
ui->spectrumGUI->resetToDefaults();
|
||||||
ui->volume->setValue(10);
|
ui->gain->setValue(10);
|
||||||
|
|
||||||
blockApplySettings(false);
|
blockApplySettings(false);
|
||||||
applySettings();
|
applySettings();
|
||||||
@ -89,7 +89,7 @@ QByteArray UDPSinkGUI::serialize() const
|
|||||||
s.writeBlob(7, ui->spectrumGUI->serialize());
|
s.writeBlob(7, ui->spectrumGUI->serialize());
|
||||||
s.writeS32(8, m_channelMarker.getCenterFrequency());
|
s.writeS32(8, m_channelMarker.getCenterFrequency());
|
||||||
s.writeString(9, m_udpAddress);
|
s.writeString(9, m_udpAddress);
|
||||||
s.writeS32(10, ui->volume->value());
|
s.writeS32(10, ui->gain->value());
|
||||||
s.writeS32(11, m_fmDeviation);
|
s.writeS32(11, m_fmDeviation);
|
||||||
s.writeU32(12, m_channelMarker.getColor().rgb());
|
s.writeU32(12, m_channelMarker.getColor().rgb());
|
||||||
s.writeString(13, m_channelMarker.getTitle());
|
s.writeString(13, m_channelMarker.getTitle());
|
||||||
@ -166,8 +166,8 @@ bool UDPSinkGUI::deserialize(const QByteArray& data)
|
|||||||
d.readString(9, &strtmp, "127.0.0.1");
|
d.readString(9, &strtmp, "127.0.0.1");
|
||||||
ui->udpAddress->setText(strtmp);
|
ui->udpAddress->setText(strtmp);
|
||||||
d.readS32(10, &s32tmp, 10);
|
d.readS32(10, &s32tmp, 10);
|
||||||
ui->volume->setValue(s32tmp);
|
ui->gain->setValue(s32tmp);
|
||||||
ui->volumeText->setText(tr("%1").arg(s32tmp/10.0, 0, 'f', 1));
|
ui->gainText->setText(tr("%1").arg(s32tmp/10.0, 0, 'f', 1));
|
||||||
d.readS32(11, &s32tmp, 2500);
|
d.readS32(11, &s32tmp, 2500);
|
||||||
ui->fmDeviation->setText(QString("%1").arg(s32tmp));
|
ui->fmDeviation->setText(QString("%1").arg(s32tmp));
|
||||||
|
|
||||||
@ -218,9 +218,9 @@ UDPSinkGUI::UDPSinkGUI(PluginAPI* pluginAPI, DeviceSinkAPI *deviceAPI, QWidget*
|
|||||||
ui(new Ui::UDPSinkGUI),
|
ui(new Ui::UDPSinkGUI),
|
||||||
m_pluginAPI(pluginAPI),
|
m_pluginAPI(pluginAPI),
|
||||||
m_deviceAPI(deviceAPI),
|
m_deviceAPI(deviceAPI),
|
||||||
m_channelPowerAvg(20, 1e-10),
|
m_channelPowerAvg(4, 1e-10),
|
||||||
m_inPowerAvg(50, 1e-10),
|
m_inPowerAvg(4, 1e-10),
|
||||||
m_powDisplayCount(0),
|
m_tickCount(0),
|
||||||
m_channelMarker(this),
|
m_channelMarker(this),
|
||||||
m_basicSettingsShown(false),
|
m_basicSettingsShown(false),
|
||||||
m_doApplySettings(true)
|
m_doApplySettings(true)
|
||||||
@ -265,6 +265,7 @@ UDPSinkGUI::UDPSinkGUI(PluginAPI* pluginAPI, DeviceSinkAPI *deviceAPI, QWidget*
|
|||||||
|
|
||||||
ui->spectrumGUI->setBuddies(m_spectrumVis->getInputMessageQueue(), m_spectrumVis, ui->glSpectrum);
|
ui->spectrumGUI->setBuddies(m_spectrumVis->getInputMessageQueue(), m_spectrumVis, ui->glSpectrum);
|
||||||
|
|
||||||
|
displaySettings();
|
||||||
applySettings(true);
|
applySettings(true);
|
||||||
|
|
||||||
connect(m_udpSink->getOutputMessageQueue(), SIGNAL(messageEnqueued()), this, SLOT(handleSourceMessages()));
|
connect(m_udpSink->getOutputMessageQueue(), SIGNAL(messageEnqueued()), this, SLOT(handleSourceMessages()));
|
||||||
@ -395,7 +396,7 @@ void UDPSinkGUI::applySettings(bool force)
|
|||||||
m_udpAddress,
|
m_udpAddress,
|
||||||
udpPort,
|
udpPort,
|
||||||
ui->channelMute->isChecked(),
|
ui->channelMute->isChecked(),
|
||||||
ui->volume->value() / 10.0f,
|
ui->gain->value() / 10.0f,
|
||||||
ui->squelch->value() * 1.0f,
|
ui->squelch->value() * 1.0f,
|
||||||
force);
|
force);
|
||||||
|
|
||||||
@ -405,7 +406,7 @@ void UDPSinkGUI::applySettings(bool force)
|
|||||||
|
|
||||||
void UDPSinkGUI::displaySettings()
|
void UDPSinkGUI::displaySettings()
|
||||||
{
|
{
|
||||||
ui->volumeText->setText(tr("%1").arg(ui->volume->value()/10.0, 0, 'f', 1));
|
ui->gainText->setText(tr("%1").arg(ui->gain->value()/10.0, 0, 'f', 1));
|
||||||
ui->squelchText->setText(tr("%1").arg(ui->squelch->value()*1.0, 0, 'f', 0));
|
ui->squelchText->setText(tr("%1").arg(ui->squelch->value()*1.0, 0, 'f', 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -458,7 +459,7 @@ void UDPSinkGUI::on_udpPort_textEdited(const QString& arg1 __attribute__((unused
|
|||||||
|
|
||||||
void UDPSinkGUI::on_volume_valueChanged(int value)
|
void UDPSinkGUI::on_volume_valueChanged(int value)
|
||||||
{
|
{
|
||||||
ui->volumeText->setText(tr("%1").arg(value/10.0, 0, 'f', 1));
|
ui->gainText->setText(tr("%1").arg(value/10.0, 0, 'f', 1));
|
||||||
applySettings();
|
applySettings();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -515,18 +516,12 @@ void UDPSinkGUI::tick()
|
|||||||
m_channelPowerAvg.feed(m_udpSink->getMagSq());
|
m_channelPowerAvg.feed(m_udpSink->getMagSq());
|
||||||
m_inPowerAvg.feed(m_udpSink->getInMagSq());
|
m_inPowerAvg.feed(m_udpSink->getInMagSq());
|
||||||
|
|
||||||
if (m_powDisplayCount < 3)
|
if (m_tickCount % 4 == 0)
|
||||||
{
|
|
||||||
m_powDisplayCount++;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
double powDb = CalcDb::dbPower(m_channelPowerAvg.average());
|
double powDb = CalcDb::dbPower(m_channelPowerAvg.average());
|
||||||
ui->channelPower->setText(tr("%1 dB").arg(powDb, 0, 'f', 1));
|
ui->channelPower->setText(tr("%1 dB").arg(powDb, 0, 'f', 1));
|
||||||
double inPowDb = CalcDb::dbPower(m_inPowerAvg.average());
|
double inPowDb = CalcDb::dbPower(m_inPowerAvg.average());
|
||||||
ui->inputPower->setText(tr("%1").arg(inPowDb, 0, 'f', 1));
|
ui->inputPower->setText(tr("%1").arg(inPowDb, 0, 'f', 1));
|
||||||
|
|
||||||
m_powDisplayCount = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t bufferGauge = m_udpSink->getBufferGauge();
|
int32_t bufferGauge = m_udpSink->getBufferGauge();
|
||||||
@ -540,5 +535,7 @@ void UDPSinkGUI::tick()
|
|||||||
} else {
|
} else {
|
||||||
ui->channelMute->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
ui->channelMute->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_tickCount++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -82,7 +82,7 @@ private:
|
|||||||
UDPSink* m_udpSink;
|
UDPSink* m_udpSink;
|
||||||
MovingAverage<double> m_channelPowerAvg;
|
MovingAverage<double> m_channelPowerAvg;
|
||||||
MovingAverage<double> m_inPowerAvg;
|
MovingAverage<double> m_inPowerAvg;
|
||||||
int m_powDisplayCount;
|
uint32_t m_tickCount;
|
||||||
ChannelMarker m_channelMarker;
|
ChannelMarker m_channelMarker;
|
||||||
|
|
||||||
// settings
|
// settings
|
||||||
|
@ -641,25 +641,16 @@
|
|||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item row="8" column="2">
|
<item row="8" column="2">
|
||||||
<layout class="QHBoxLayout" name="VolumeLayout">
|
<layout class="QHBoxLayout" name="GainLayout">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="volumeLabel">
|
<widget class="QLabel" name="gainLabel">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Gain</string>
|
<string>Gain</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QDial" name="volume">
|
<widget class="QSlider" name="gain">
|
||||||
<property name="maximumSize">
|
|
||||||
<size>
|
|
||||||
<width>22</width>
|
|
||||||
<height>22</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="toolTip">
|
|
||||||
<string>Linear gain</string>
|
|
||||||
</property>
|
|
||||||
<property name="maximum">
|
<property name="maximum">
|
||||||
<number>100</number>
|
<number>100</number>
|
||||||
</property>
|
</property>
|
||||||
@ -669,10 +660,13 @@
|
|||||||
<property name="value">
|
<property name="value">
|
||||||
<number>10</number>
|
<number>10</number>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="volumeText">
|
<widget class="QLabel" name="gainText">
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>32</width>
|
<width>32</width>
|
||||||
@ -690,19 +684,6 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
|
||||||
<spacer name="horizontalSpacer_3">
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
<property name="sizeHint" stdset="0">
|
|
||||||
<size>
|
|
||||||
<width>40</width>
|
|
||||||
<height>20</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</spacer>
|
|
||||||
</item>
|
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item row="4" column="2">
|
<item row="4" column="2">
|
||||||
|
Loading…
Reference in New Issue
Block a user