mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-23 00:18:37 -05:00
UDPSink plugin: implemented AM
This commit is contained in:
parent
b3bd9967a4
commit
9ac435d491
@ -161,7 +161,7 @@ void UDPSink::modulateSample()
|
||||
|
||||
if (m_squelchOpen)
|
||||
{
|
||||
m_modPhasor += (m_running.m_fmDeviation / m_running.m_inputSampleRate) * (t / 32768.0) * M_PI * 2.0f;
|
||||
m_modPhasor += (m_running.m_fmDeviation / m_running.m_inputSampleRate) * (t / 32768.0f) * M_PI * 2.0f;
|
||||
m_modSample.real(cos(m_modPhasor) * 10362.2f * m_running.m_gain);
|
||||
m_modSample.imag(sin(m_modPhasor) * 10362.2f * m_running.m_gain);
|
||||
calculateLevel(m_modSample);
|
||||
@ -172,6 +172,27 @@ void UDPSink::modulateSample()
|
||||
m_modSample.imag(0.0f);
|
||||
}
|
||||
}
|
||||
else if (m_running.m_sampleFormat == FormatAMMono)
|
||||
{
|
||||
FixReal t;
|
||||
m_udpHandler.readSample(t);
|
||||
m_inMovingAverage.feed((t*t)/1073741824.0);
|
||||
m_inMagsq = m_inMovingAverage.average();
|
||||
|
||||
calculateSquelch(m_inMagsq);
|
||||
|
||||
if (m_squelchOpen)
|
||||
{
|
||||
m_modSample.real(((t / 32768.0f)*m_running.m_amModFactor*m_running.m_gain + 1.0f) * 16384.0f); // modulate and scale zero frequency carrier
|
||||
m_modSample.imag(0.0f);
|
||||
calculateLevel(m_modSample);
|
||||
}
|
||||
else
|
||||
{
|
||||
m_modSample.real(0.0f);
|
||||
m_modSample.imag(0.0f);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
m_modSample.real(0.0f);
|
||||
@ -375,6 +396,7 @@ void UDPSink::configure(MessageQueue* messageQueue,
|
||||
Real outputSampleRate,
|
||||
Real rfBandwidth,
|
||||
int fmDeviation,
|
||||
Real amModFactor,
|
||||
QString& udpAddress,
|
||||
int udpPort,
|
||||
bool channelMute,
|
||||
@ -388,6 +410,7 @@ void UDPSink::configure(MessageQueue* messageQueue,
|
||||
outputSampleRate,
|
||||
rfBandwidth,
|
||||
fmDeviation,
|
||||
amModFactor,
|
||||
udpAddress,
|
||||
udpPort,
|
||||
channelMute,
|
||||
|
@ -64,6 +64,7 @@ public:
|
||||
Real inputSampleRate,
|
||||
Real rfBandwidth,
|
||||
int fmDeviation,
|
||||
Real amModFactor,
|
||||
QString& udpAddress,
|
||||
int udpPort,
|
||||
bool channelMute,
|
||||
@ -93,6 +94,7 @@ private:
|
||||
Real getInputSampleRate() const { return m_inputSampleRate; }
|
||||
Real getRFBandwidth() const { return m_rfBandwidth; }
|
||||
int getFMDeviation() const { return m_fmDeviation; }
|
||||
Real getAMModFactor() const { return m_amModFactor; }
|
||||
const QString& getUDPAddress() const { return m_udpAddress; }
|
||||
int getUDPPort() const { return m_udpPort; }
|
||||
bool getChannelMute() const { return m_channelMute; }
|
||||
@ -107,6 +109,7 @@ private:
|
||||
Real inputSampleRate,
|
||||
Real rfBandwidth,
|
||||
int fmDeviation,
|
||||
Real amModFactor,
|
||||
QString& udpAddress,
|
||||
int udpPort,
|
||||
bool channelMute,
|
||||
@ -120,6 +123,7 @@ private:
|
||||
inputSampleRate,
|
||||
rfBandwidth,
|
||||
fmDeviation,
|
||||
amModFactor,
|
||||
udpAddress,
|
||||
udpPort,
|
||||
channelMute,
|
||||
@ -135,6 +139,7 @@ private:
|
||||
Real m_inputSampleRate;
|
||||
Real m_rfBandwidth;
|
||||
int m_fmDeviation;
|
||||
Real m_amModFactor;
|
||||
QString m_udpAddress;
|
||||
int m_udpPort;
|
||||
bool m_channelMute;
|
||||
@ -148,6 +153,7 @@ private:
|
||||
Real inputSampleRate,
|
||||
Real rfBandwidth,
|
||||
int fmDeviation,
|
||||
Real amModFactor,
|
||||
QString& udpAddress,
|
||||
int udpPort,
|
||||
bool channelMute,
|
||||
@ -161,6 +167,7 @@ private:
|
||||
m_inputSampleRate(inputSampleRate),
|
||||
m_rfBandwidth(rfBandwidth),
|
||||
m_fmDeviation(fmDeviation),
|
||||
m_amModFactor(amModFactor),
|
||||
m_udpAddress(udpAddress),
|
||||
m_udpPort(udpPort),
|
||||
m_channelMute(channelMute),
|
||||
@ -217,6 +224,7 @@ private:
|
||||
qint64 m_inputFrequencyOffset;
|
||||
Real m_rfBandwidth;
|
||||
int m_fmDeviation;
|
||||
Real m_amModFactor;
|
||||
bool m_channelMute;
|
||||
Real m_gain;
|
||||
Real m_squelch; //!< squared magnitude
|
||||
@ -234,6 +242,7 @@ private:
|
||||
m_inputFrequencyOffset(0),
|
||||
m_rfBandwidth(12500),
|
||||
m_fmDeviation(1.0),
|
||||
m_amModFactor(0.95),
|
||||
m_channelMute(false),
|
||||
m_gain(1.0),
|
||||
m_squelch(-50.0),
|
||||
|
@ -328,6 +328,13 @@ void UDPSinkGUI::applySettings(bool force)
|
||||
fmDeviation = 2500;
|
||||
}
|
||||
|
||||
int amModPercent = ui->amModPercent->text().toInt(&ok);
|
||||
|
||||
if ((!ok) || (amModPercent < 1) || (amModPercent > 100))
|
||||
{
|
||||
amModPercent = 95;
|
||||
}
|
||||
|
||||
setTitleColor(m_channelMarker.getColor());
|
||||
ui->deltaFrequency->setValue(m_channelMarker.getCenterFrequency());
|
||||
ui->sampleRate->setText(QString("%1").arg(inputSampleRate, 0));
|
||||
@ -335,6 +342,7 @@ void UDPSinkGUI::applySettings(bool force)
|
||||
//ui->udpAddress->setText(m_udpAddress);
|
||||
ui->udpPort->setText(QString("%1").arg(udpPort));
|
||||
ui->fmDeviation->setText(QString("%1").arg(fmDeviation));
|
||||
ui->amModPercent->setText(QString("%1").arg(amModPercent));
|
||||
m_channelMarker.disconnect(this, SLOT(channelMarkerChanged()));
|
||||
m_channelMarker.setBandwidth((int)rfBandwidth);
|
||||
connect(&m_channelMarker, SIGNAL(changed()), this, SLOT(channelMarkerChanged()));
|
||||
@ -397,6 +405,7 @@ void UDPSinkGUI::applySettings(bool force)
|
||||
inputSampleRate,
|
||||
rfBandwidth,
|
||||
fmDeviation,
|
||||
amModPercent / 100.0f,
|
||||
m_udpAddress,
|
||||
udpPort,
|
||||
ui->channelMute->isChecked(),
|
||||
@ -430,12 +439,18 @@ void UDPSinkGUI::on_deltaFrequency_changed(qint64 value)
|
||||
|
||||
void UDPSinkGUI::on_sampleFormat_currentIndexChanged(int index)
|
||||
{
|
||||
if ((index == 1) || (index == 2)) {
|
||||
if ((index == (int) UDPSink::FormatNFM) || (index == (int) UDPSink::FormatNFMMono)) {
|
||||
ui->fmDeviation->setEnabled(true);
|
||||
} else {
|
||||
ui->fmDeviation->setEnabled(false);
|
||||
}
|
||||
|
||||
if (index == (int) UDPSink::FormatAMMono) {
|
||||
ui->amModPercent->setEnabled(true);
|
||||
} else {
|
||||
ui->amModPercent->setEnabled(false);
|
||||
}
|
||||
|
||||
ui->applyBtn->setEnabled(true);
|
||||
}
|
||||
|
||||
@ -454,6 +469,11 @@ void UDPSinkGUI::on_fmDeviation_textEdited(const QString& arg1 __attribute__((un
|
||||
ui->applyBtn->setEnabled(true);
|
||||
}
|
||||
|
||||
void UDPSinkGUI::on_amModPercent_textEdited(const QString& arg1 __attribute__((unused)))
|
||||
{
|
||||
ui->applyBtn->setEnabled(true);
|
||||
}
|
||||
|
||||
void UDPSinkGUI::on_udpAddress_textEdited(const QString& arg1 __attribute__((unused)))
|
||||
{
|
||||
ui->applyBtn->setEnabled(true);
|
||||
|
@ -64,6 +64,7 @@ private slots:
|
||||
void on_udpAddress_textEdited(const QString& arg1);
|
||||
void on_udpPort_textEdited(const QString& arg1);
|
||||
void on_fmDeviation_textEdited(const QString& arg1);
|
||||
void on_amModPercent_textEdited(const QString& arg1);
|
||||
void on_applyBtn_clicked();
|
||||
void onWidgetRolled(QWidget* widget, bool rollDown);
|
||||
void onMenuDoubleClicked();
|
||||
|
@ -100,7 +100,7 @@
|
||||
<item>
|
||||
<widget class="QLineEdit" name="fmDeviation">
|
||||
<property name="toolTip">
|
||||
<string>FM deviation in Hz (for S16LE NFM format)</string>
|
||||
<string>FM deviation in Hz</string>
|
||||
</property>
|
||||
<property name="inputMask">
|
||||
<string>00000</string>
|
||||
@ -110,11 +110,43 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="amModPercentLabel">
|
||||
<property name="text">
|
||||
<string>AM%</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLineEdit" name="amModPercent">
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>60</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Percentage of AM modulation</string>
|
||||
</property>
|
||||
<property name="inputMask">
|
||||
<string>000</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>95</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="applyBtn">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>60</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Apply text input and/or samples format</string>
|
||||
</property>
|
||||
@ -700,6 +732,12 @@
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QSlider" name="squelch">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>30</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Power squelch threshold (dB)</string>
|
||||
</property>
|
||||
|
Loading…
Reference in New Issue
Block a user