mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-04-21 19:09:22 -04:00
LimeSDR input: changed default gain to 50 dB
This commit is contained in:
parent
a538fadb0c
commit
6fb6e35607
@ -33,7 +33,7 @@ void LimeSDRInputSettings::resetToDefaults()
|
||||
m_lpfBW = 4.5e6f;
|
||||
m_lpfFIREnable = false;
|
||||
m_lpfFIRBW = 2.5e6f;
|
||||
m_gain = 30;
|
||||
m_gain = 50;
|
||||
m_ncoEnable = false;
|
||||
m_ncoFrequency = 0;
|
||||
m_antennaPath = PATH_RFE_NONE;
|
||||
@ -81,7 +81,7 @@ bool LimeSDRInputSettings::deserialize(const QByteArray& data)
|
||||
d.readFloat(7, &m_lpfBW, 1.5e6);
|
||||
d.readBool(8, &m_lpfFIREnable, false);
|
||||
d.readFloat(9, &m_lpfFIRBW, 1.5e6);
|
||||
d.readU32(10, &m_gain, 0);
|
||||
d.readU32(10, &m_gain, 50);
|
||||
d.readBool(11, &m_ncoEnable, false);
|
||||
d.readS32(12, &m_ncoFrequency, 0);
|
||||
d.readS32(13, &intval, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user