1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-01-05 15:58:50 -05:00

RTL-SDR: rf bandwidth deserialization fix

This commit is contained in:
f4exb 2019-08-27 22:39:48 +02:00
parent 52593ab240
commit d4a32affc2

View File

@ -102,7 +102,7 @@ bool RTLSDRSettings::deserialize(const QByteArray& data)
d.readBool(11, &m_noModMode, false);
d.readBool(12, &m_transverterMode, false);
d.readS64(13, &m_transverterDeltaFrequency, 0);
d.readU32(4, &m_rfBandwidth, 2500 * 1000);
d.readU32(14, &m_rfBandwidth, 2500 * 1000);
d.readBool(15, &m_offsetTuning, false);
d.readBool(16, &m_useReverseAPI, false);
d.readString(17, &m_reverseAPIAddress, "127.0.0.1");