1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-28 07:46:37 -04:00

UDPSink plugin: implemented squelch

This commit is contained in:
f4exb 2017-08-17 04:23:36 +02:00
parent 428820bb11
commit 8ec9ce94dc
5 changed files with 322 additions and 136 deletions

View File

@ -17,6 +17,7 @@
#include <QDebug>
#include "dsp/upchannelizer.h"
#include "util/db.h"
#include "udpsinkmsg.h"
#include "udpsink.h"
@ -31,13 +32,18 @@ UDPSink::UDPSink(MessageQueue* uiMessageQueue, UDPSinkGUI* udpSinkGUI, BasebandS
m_spectrumChunkSize(2160),
m_spectrumChunkCounter(0),
m_magsq(1e-10),
m_movingAverage(16, 0),
m_movingAverage(16, 1e-10),
m_inMovingAverage(480, 1e-10),
m_sampleRateSum(0),
m_sampleRateAvgCounter(0),
m_levelCalcCount(0),
m_peakLevel(0.0f),
m_levelSum(0.0f),
m_levelNbSamples(480),
m_squelchOpen(false),
m_squelchOpenCount(0),
m_squelchCloseCount(0),
m_squelchThreshold(4800),
m_settingsMutex(QMutex::Recursive)
{
setObjectName("UDPSink");
@ -65,6 +71,7 @@ void UDPSink::pull(Sample& sample)
{
sample.m_real = 0.0f;
sample.m_imag = 0.0f;
initSquelch(false);
return;
}
@ -95,7 +102,7 @@ void UDPSink::pull(Sample& sample)
m_settingsMutex.unlock();
Real magsq = ci.real() * ci.real() + ci.imag() * ci.imag();
double magsq = ci.real() * ci.real() + ci.imag() * ci.imag();
magsq /= (1<<30);
m_movingAverage.feed(magsq);
m_magsq = m_movingAverage.average();
@ -112,15 +119,30 @@ void UDPSink::modulateSample()
if (m_running.m_sampleFormat == FormatS16LE)
{
m_udpHandler.readSample(s);
m_modSample.real(s.m_real * m_running.m_volume);
m_modSample.imag(s.m_imag * m_running.m_volume);
calculateLevel(m_modSample);
uint64_t magsq = s.m_real * s.m_real + s.m_imag * s.m_imag;
m_inMovingAverage.feed(magsq/1073741824.0);
m_inMagsq = m_inMovingAverage.average();
calculateSquelch(m_inMagsq);
if (m_squelchOpen)
{
m_modSample.real(s.m_real * m_running.m_volume);
m_modSample.imag(s.m_imag * m_running.m_volume);
calculateLevel(m_modSample);
}
else
{
m_modSample.real(0.0f);
m_modSample.imag(0.0f);
}
}
else
{
m_modSample.real(0.0f);
m_modSample.imag(0.0f);
calculateLevel(1e-10);
initSquelch(false);
}
if (m_spectrum && m_spectrumEnabled && (m_spectrumChunkCounter < m_spectrumChunkSize - 1))
@ -149,7 +171,7 @@ void UDPSink::calculateLevel(Real sample)
}
else
{
qreal rmsLevel = sqrt(m_levelSum / m_levelNbSamples);
qreal rmsLevel = m_levelSum > 0.0 ? sqrt(m_levelSum / m_levelNbSamples) : 0.0;
//qDebug("NFMMod::calculateLevel: %f %f", rmsLevel, m_peakLevel);
emit levelChanged(rmsLevel, m_peakLevel, m_levelNbSamples);
m_peakLevel = 0.0f;
@ -170,7 +192,7 @@ void UDPSink::calculateLevel(Complex sample)
}
else
{
qreal rmsLevel = sqrt((m_levelSum/(1<<30)) / m_levelNbSamples);
qreal rmsLevel = m_levelSum > 0.0 ? sqrt((m_levelSum/(1<<30)) / m_levelNbSamples) : 0.0;
emit levelChanged(rmsLevel, m_peakLevel / 32768.0, m_levelNbSamples);
m_peakLevel = 0.0f;
m_levelSum = 0.0f;
@ -209,6 +231,7 @@ bool UDPSink::handleMessage(const Message& cmd)
m_config.m_udpPort = cfg.getUDPPort();
m_config.m_channelMute = cfg.getChannelMute();
m_config.m_volume = cfg.getVolume();
m_config.m_squelch = CalcDb::powerFromdB(cfg.getSquelchDB());
apply(cfg.getForce());
@ -220,7 +243,9 @@ bool UDPSink::handleMessage(const Message& cmd)
<< " m_udpAddressStr: " << m_config.m_udpAddressStr
<< " m_udpPort: " << m_config.m_udpPort
<< " m_channelMute: " << m_config.m_channelMute
<< " m_volume: " << m_config.m_volume;
<< " m_volume: " << m_config.m_volume
<< " squelchDB: " << cfg.getSquelchDB()
<< " m_squelch: " << m_config.m_squelch;
return true;
}
@ -306,6 +331,7 @@ void UDPSink::configure(MessageQueue* messageQueue,
int udpPort,
bool channelMute,
Real volume,
Real squelchDB,
bool force)
{
Message* cmd = MsgUDPSinkConfigure::create(sampleFormat,
@ -316,6 +342,7 @@ void UDPSink::configure(MessageQueue* messageQueue,
udpPort,
channelMute,
volume,
squelchDB,
force);
messageQueue->push(cmd);
}
@ -357,6 +384,8 @@ void UDPSink::apply(bool force)
m_peakLevel = 0.0f;
m_levelSum = 0.0f;
m_udpHandler.resizeBuffer(m_config.m_inputSampleRate);
m_inMovingAverage.resize(m_config.m_inputSampleRate * 0.01, 1e-10); // 10 ms
m_squelchThreshold = m_config.m_inputSampleRate * 0.1; // 100 ms
m_settingsMutex.unlock();
}

View File

@ -55,7 +55,9 @@ public:
virtual bool handleMessage(const Message& cmd);
double getMagSq() const { return m_magsq; }
double getInMagSq() const { return m_inMagsq; }
int32_t getBufferGauge() const { return m_udpHandler.getBufferGauge(); }
bool getSquelchOpen() const { return m_squelchOpen; }
void configure(MessageQueue* messageQueue,
SampleFormat sampleFormat,
@ -66,6 +68,7 @@ public:
int udpPort,
bool channelMute,
Real volume,
Real squelchDB,
bool force = false);
void setSpectrum(MessageQueue* messageQueue, bool enabled);
@ -91,6 +94,7 @@ private:
int getUDPPort() const { return m_udpPort; }
bool getChannelMute() const { return m_channelMute; }
Real getVolume() const { return m_volume; }
Real getSquelchDB() const { return m_squelchDB; }
bool getForce() const { return m_force; }
static MsgUDPSinkConfigure* create(SampleFormat
@ -102,6 +106,7 @@ private:
int udpPort,
bool channelMute,
Real volume,
Real squelchDB,
bool force)
{
return new MsgUDPSinkConfigure(sampleFormat,
@ -112,6 +117,7 @@ private:
udpPort,
channelMute,
volume,
squelchDB,
force);
}
@ -124,6 +130,7 @@ private:
int m_udpPort;
bool m_channelMute;
Real m_volume;
Real m_squelchDB;
bool m_force;
MsgUDPSinkConfigure(SampleFormat sampleFormat,
@ -134,6 +141,7 @@ private:
int udpPort,
bool channelMute,
Real volume,
Real squelchDB,
bool force) :
Message(),
m_sampleFormat(sampleFormat),
@ -144,6 +152,7 @@ private:
m_udpPort(udpPort),
m_channelMute(channelMute),
m_volume(volume),
m_squelchDB(squelchDB),
m_force(force)
{ }
};
@ -178,6 +187,7 @@ private:
int m_fmDeviation;
bool m_channelMute;
Real m_volume;
Real m_squelch; //!< squared magnitude
QString m_udpAddressStr;
quint16 m_udpPort;
@ -192,6 +202,7 @@ private:
m_fmDeviation(1.0),
m_channelMute(false),
m_volume(1.0),
m_squelch(-50.0),
m_udpAddressStr("127.0.0.1"),
m_udpPort(9999)
{}
@ -217,7 +228,9 @@ private:
bool m_interpolatorConsumed;
double m_magsq;
double m_inMagsq;
MovingAverage<double> m_movingAverage;
MovingAverage<double> m_inMovingAverage;
UDPSinkUDPHandler m_udpHandler;
Real m_actualInputSampleRate; //!< sample rate with UDP buffer skew compensation
@ -229,6 +242,11 @@ private:
double m_levelSum;
int m_levelNbSamples;
bool m_squelchOpen;
int m_squelchOpenCount;
int m_squelchCloseCount;
int m_squelchThreshold;
QMutex m_settingsMutex;
static const int m_sampleRateAverageItems = 17;
@ -237,6 +255,44 @@ private:
void modulateSample();
void calculateLevel(Real sample);
void calculateLevel(Complex sample);
inline void calculateSquelch(double value)
{
if (value > m_running.m_squelch)
{
if (m_squelchOpenCount < m_squelchThreshold) {
m_squelchOpenCount++;
} else {
m_squelchCloseCount = m_squelchThreshold;
m_squelchOpen = true;
}
}
else
{
if (m_squelchCloseCount > 0) {
m_squelchCloseCount--;
} else {
m_squelchOpenCount = 0;
m_squelchOpen = false;
}
}
}
inline void initSquelch(bool open)
{
if (open)
{
m_squelchOpen = true;
m_squelchOpenCount = m_squelchThreshold;
m_squelchCloseCount = m_squelchThreshold;
}
else
{
m_squelchOpen = false;
m_squelchOpenCount = 0;
m_squelchCloseCount = 0;
}
}
};

View File

@ -93,6 +93,7 @@ QByteArray UDPSinkGUI::serialize() const
s.writeS32(11, m_fmDeviation);
s.writeU32(12, m_channelMarker.getColor().rgb());
s.writeString(13, m_channelMarker.getTitle());
s.writeS32(14, ui->squelch->value());
return s.final();
}
@ -176,6 +177,10 @@ bool UDPSinkGUI::deserialize(const QByteArray& data)
m_channelMarker.setTitle(strtmp);
this->setWindowTitle(m_channelMarker.getTitle());
d.readS32(14, &s32tmp, 10);
ui->squelch->setValue(s32tmp);
ui->squelchText->setText(tr("%1").arg(s32tmp*1.0, 0, 'f', 0));
blockApplySettings(false);
m_channelMarker.blockSignals(false);
@ -213,7 +218,9 @@ UDPSinkGUI::UDPSinkGUI(PluginAPI* pluginAPI, DeviceSinkAPI *deviceAPI, QWidget*
ui(new Ui::UDPSinkGUI),
m_pluginAPI(pluginAPI),
m_deviceAPI(deviceAPI),
m_channelPowerDbAvg(20,0),
m_channelPowerAvg(20, 1e-10),
m_inPowerAvg(50, 1e-10),
m_powDisplayCount(0),
m_channelMarker(this),
m_basicSettingsShown(false),
m_doApplySettings(true)
@ -389,12 +396,19 @@ void UDPSinkGUI::applySettings(bool force)
udpPort,
ui->channelMute->isChecked(),
ui->volume->value() / 10.0f,
ui->squelch->value() * 1.0f,
force);
ui->applyBtn->setEnabled(false);
}
}
void UDPSinkGUI::displaySettings()
{
ui->volumeText->setText(tr("%1").arg(ui->volume->value()/10.0, 0, 'f', 1));
ui->squelchText->setText(tr("%1").arg(ui->squelch->value()*1.0, 0, 'f', 0));
}
void UDPSinkGUI::channelMarkerChanged()
{
this->setWindowTitle(m_channelMarker.getTitle());
@ -448,6 +462,12 @@ void UDPSinkGUI::on_volume_valueChanged(int value)
applySettings();
}
void UDPSinkGUI::on_squelch_valueChanged(int value)
{
ui->squelchText->setText(tr("%1").arg(value*1.0, 0, 'f', 0));
applySettings();
}
void UDPSinkGUI::on_channelMute_toggled(bool checked __attribute__((unused)))
{
applySettings();
@ -492,9 +512,22 @@ void UDPSinkGUI::enterEvent(QEvent*)
void UDPSinkGUI::tick()
{
double powDb = CalcDb::dbPower(m_udpSink->getMagSq());
m_channelPowerDbAvg.feed(powDb);
ui->channelPower->setText(tr("%1 dB").arg(m_channelPowerDbAvg.average(), 0, 'f', 1));
m_channelPowerAvg.feed(m_udpSink->getMagSq());
m_inPowerAvg.feed(m_udpSink->getInMagSq());
if (m_powDisplayCount < 3)
{
m_powDisplayCount++;
}
else
{
double powDb = CalcDb::dbPower(m_channelPowerAvg.average());
ui->channelPower->setText(tr("%1 dB").arg(powDb, 0, 'f', 1));
double inPowDb = CalcDb::dbPower(m_inPowerAvg.average());
ui->inputPower->setText(tr("%1").arg(inPowDb, 0, 'f', 1));
m_powDisplayCount = 0;
}
int32_t bufferGauge = m_udpSink->getBufferGauge();
ui->bufferGaugeNegative->setValue((bufferGauge < 0 ? -bufferGauge : 0));
@ -502,5 +535,10 @@ void UDPSinkGUI::tick()
QString s = QString::number(bufferGauge, 'f', 0);
ui->bufferRWBalanceText->setText(tr("%1").arg(s));
if (m_udpSink->getSquelchOpen()) {
ui->channelMute->setStyleSheet("QToolButton { background-color : green; }");
} else {
ui->channelMute->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
}
}

View File

@ -68,6 +68,7 @@ private slots:
void onWidgetRolled(QWidget* widget, bool rollDown);
void onMenuDoubleClicked();
void on_volume_valueChanged(int value);
void on_squelch_valueChanged(int value);
void on_channelMute_toggled(bool checked);
void tick();
@ -79,7 +80,9 @@ private:
UpChannelizer* m_channelizer;
SpectrumVis* m_spectrumVis;
UDPSink* m_udpSink;
MovingAverage<double> m_channelPowerDbAvg;
MovingAverage<double> m_channelPowerAvg;
MovingAverage<double> m_inPowerAvg;
int m_powDisplayCount;
ChannelMarker m_channelMarker;
// settings
@ -97,6 +100,7 @@ private:
void blockApplySettings(bool block);
void applySettings(bool force = false);
void displaySettings();
void leaveEvent(QEvent*);
void enterEvent(QEvent*);

View File

@ -7,7 +7,7 @@
<x>0</x>
<y>0</y>
<width>348</width>
<height>355</height>
<height>400</height>
</rect>
</property>
<property name="minimumSize">
@ -71,6 +71,114 @@
<property name="spacing">
<number>3</number>
</property>
<item row="8" column="0">
<layout class="QHBoxLayout" name="VUMeterLayout">
<item>
<widget class="LevelMeterVU" name="volumeMeter" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
</widget>
</item>
</layout>
</item>
<item row="4" column="0">
<layout class="QHBoxLayout" name="FMDevLayout">
<item>
<widget class="QLabel" name="fmDevLabel">
<property name="text">
<string>FMd</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="fmDeviation">
<property name="toolTip">
<string>FM deviation in Hz (for S16LE NFM format)</string>
</property>
<property name="inputMask">
<string>00000</string>
</property>
<property name="text">
<string>2500</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="squelchLabel">
<property name="text">
<string>Sq</string>
</property>
</widget>
</item>
<item>
<widget class="QDial" name="squelch">
<property name="maximumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="toolTip">
<string>Power squelch threshold (dB)</string>
</property>
<property name="minimum">
<number>-100</number>
</property>
<property name="maximum">
<number>0</number>
</property>
<property name="pageStep">
<number>1</number>
</property>
<property name="value">
<number>-50</number>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="squelchText">
<property name="minimumSize">
<size>
<width>22</width>
<height>0</height>
</size>
</property>
<property name="toolTip">
<string>Power squelch threshold (dB)</string>
</property>
<property name="text">
<string>-00</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="inputPower">
<property name="minimumSize">
<size>
<width>40</width>
<height>0</height>
</size>
</property>
<property name="toolTip">
<string>Input power (dB)</string>
</property>
<property name="text">
<string>-100.0</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
</layout>
</item>
<item row="3" column="0">
<layout class="QHBoxLayout" name="AddressLayout">
<item>
@ -299,100 +407,6 @@
</item>
</layout>
</item>
<item row="8" column="0">
<layout class="QHBoxLayout" name="FMDevLayout">
<item>
<widget class="QLabel" name="fmDevLabel">
<property name="text">
<string>FMd (Hz)</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="fmDeviation">
<property name="toolTip">
<string>FM deviation in Hz (for S16LE NFM format)</string>
</property>
<property name="inputMask">
<string>00000</string>
</property>
<property name="text">
<string>2500</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>Sq</string>
</property>
</widget>
</item>
<item>
<widget class="QDial" name="dial">
<property name="maximumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="toolTip">
<string>Power squelch threshold (dB)</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_2">
<property name="toolTip">
<string>Power squelch threshold (dB)</string>
</property>
<property name="text">
<string>-00</string>
</property>
</widget>
</item>
</layout>
</item>
<item row="4" column="2">
<layout class="QHBoxLayout" name="VolumeLayout">
<item>
<widget class="QLabel" name="volumeLabel">
<property name="text">
<string>Vol</string>
</property>
</widget>
</item>
<item>
<widget class="QDial" name="volume">
<property name="maximumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="maximum">
<number>50</number>
</property>
<property name="pageStep">
<number>1</number>
</property>
<property name="value">
<number>10</number>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="volumeText">
<property name="text">
<string>0.0</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
</layout>
</item>
<item row="1" column="0" rowspan="2">
<layout class="QHBoxLayout" name="FormatLayout">
<item>
@ -520,33 +534,6 @@
</item>
</layout>
</item>
<item row="8" column="2">
<widget class="QPushButton" name="applyBtn">
<property name="enabled">
<bool>false</bool>
</property>
<property name="toolTip">
<string>Apply text input and/or samples format</string>
</property>
<property name="text">
<string>Apply</string>
</property>
</widget>
</item>
<item row="4" column="0">
<layout class="QHBoxLayout" name="VUMeterLayout">
<item>
<widget class="LevelMeterVU" name="volumeMeter" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
</widget>
</item>
</layout>
</item>
<item row="9" column="0">
<layout class="QHBoxLayout" name="BufferGaugeLayout">
<item>
@ -650,6 +637,78 @@
</item>
</layout>
</item>
<item row="8" column="2">
<layout class="QHBoxLayout" name="VolumeLayout">
<item>
<widget class="QLabel" name="volumeLabel">
<property name="text">
<string>Vol</string>
</property>
</widget>
</item>
<item>
<widget class="QDial" name="volume">
<property name="maximumSize">
<size>
<width>22</width>
<height>22</height>
</size>
</property>
<property name="maximum">
<number>100</number>
</property>
<property name="pageStep">
<number>1</number>
</property>
<property name="value">
<number>10</number>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="volumeText">
<property name="minimumSize">
<size>
<width>32</width>
<height>0</height>
</size>
</property>
<property name="text">
<string>10.0</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</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>
</item>
<item row="4" column="2">
<widget class="QPushButton" name="applyBtn">
<property name="enabled">
<bool>false</bool>
</property>
<property name="toolTip">
<string>Apply text input and/or samples format</string>
</property>
<property name="text">
<string>Apply</string>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="spectrumBox" native="true">