mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-05-23 18:52:28 -04:00
Merge pull request #1293 from srcejon/fix_1284
USRP: Attempt to support radios without AGC
This commit is contained in:
commit
e45b4e9254
@ -823,8 +823,15 @@ bool USRPInput::applySettings(const USRPInputSettings& settings, bool preGetStre
|
|||||||
{
|
{
|
||||||
if (settings.m_gainMode == USRPInputSettings::GAIN_AUTO)
|
if (settings.m_gainMode == USRPInputSettings::GAIN_AUTO)
|
||||||
{
|
{
|
||||||
m_deviceShared.m_deviceParams->getDevice()->set_rx_agc(true, m_deviceShared.m_channel);
|
try
|
||||||
qDebug() << "USRPInput::applySettings: AGC enabled for channel " << m_deviceShared.m_channel;
|
{
|
||||||
|
m_deviceShared.m_deviceParams->getDevice()->set_rx_agc(true, m_deviceShared.m_channel);
|
||||||
|
qDebug() << "USRPInput::applySettings: AGC enabled for channel " << m_deviceShared.m_channel;
|
||||||
|
}
|
||||||
|
catch (uhd::not_implemented_error &e)
|
||||||
|
{
|
||||||
|
qDebug() << "USRPInput::applySettings: AGC not implemented on this radio. Please set to manual.";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user