1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-03 06:24:48 -04:00

PlutoSDR: some minor changes to pull request #269 (Get LO range from device) and get Tx LO range also from device

This commit is contained in:
f4exb
2019-01-04 11:23:54 +01:00
parent 01269ac07e
commit b5a7425f1e
8 changed files with 59 additions and 16 deletions
@@ -680,7 +680,7 @@ void PlutoSDRInput::getLORange(qint64& minLimit, qint64& maxLimit)
uint64_t min, max;
DevicePlutoSDRBox *plutoBox = m_deviceShared.m_deviceParams->getBox();
plutoBox->getRxLORange(min, max, 0);
plutoBox->getRxLORange(min, max);
minLimit = min;
maxLimit = max;
}