1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-06 16:05:13 -04:00

SDRPlay plugin: removed usless auto gain mode

This commit is contained in:
f4exb
2016-11-17 03:19:05 +01:00
parent d68b34bd88
commit b997f6ca39
6 changed files with 5 additions and 48 deletions
@@ -37,7 +37,6 @@ void SDRPlaySettings::resetToDefaults()
m_fcPos = FC_POS_CENTER;
m_dcBlock = false;
m_iqCorrection = false;
m_autoGain = false;
}
QByteArray SDRPlaySettings::serialize() const
@@ -54,7 +53,6 @@ QByteArray SDRPlaySettings::serialize() const
s.writeS32(8, (int) m_fcPos);
s.writeBool(9, m_dcBlock);
s.writeBool(10, m_iqCorrection);
s.writeBool(11, m_autoGain);
return s.final();
}
@@ -84,7 +82,6 @@ bool SDRPlaySettings::deserialize(const QByteArray& data)
m_fcPos = (fcPos_t) intval;
d.readBool(9, &m_dcBlock, false);
d.readBool(10, &m_iqCorrection, false);
d.readBool(11, &m_autoGain, false);
return true;
}