1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-04-05 02:58:37 -04:00

Remove unused filter. Fix default log file name.

This commit is contained in:
Jon Beniston 2023-03-03 18:03:38 +00:00
parent d97d1f7ed0
commit 42bee4e3fa
3 changed files with 1 additions and 3 deletions

View File

@ -170,7 +170,7 @@ bool PacketDemodSettings::deserialize(const QByteArray& data)
m_udpPort = 9999;
}
d.readString(25, &m_logFilename, "pager_log.csv");
d.readString(25, &m_logFilename, "packet_log.csv");
d.readBool(26, &m_logEnabled, false);
if (m_rollupState)

View File

@ -302,7 +302,6 @@ void PacketDemodSink::applySettings(const PacketDemodSettings& settings, bool fo
m_interpolator.create(16, m_channelSampleRate, settings.m_rfBandwidth / 2.2);
m_interpolatorDistance = (Real) m_channelSampleRate / (Real) PacketDemodSettings::PACKETDEMOD_CHANNEL_SAMPLE_RATE;
m_interpolatorDistanceRemain = m_interpolatorDistance;
m_lowpass.create(301, PacketDemodSettings::PACKETDEMOD_CHANNEL_SAMPLE_RATE, settings.m_rfBandwidth / 2.0f);
}
if ((settings.m_fmDeviation != m_settings.m_fmDeviation) || force)
{

View File

@ -105,7 +105,6 @@ private:
MovingAverageUtil<Real, double, 16> m_movingAverage;
Lowpass<Complex> m_lowpass;
PhaseDiscriminators m_phaseDiscri;
int m_correlationLength;