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:
parent
d97d1f7ed0
commit
42bee4e3fa
@ -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)
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -105,7 +105,6 @@ private:
|
||||
|
||||
MovingAverageUtil<Real, double, 16> m_movingAverage;
|
||||
|
||||
Lowpass<Complex> m_lowpass;
|
||||
PhaseDiscriminators m_phaseDiscri;
|
||||
|
||||
int m_correlationLength;
|
||||
|
Loading…
Reference in New Issue
Block a user