1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-08-14 15:33:34 -04:00

Merge pull request #2707 from eolder/master

USRP: B210: fix sample rate range upper bound
This commit is contained in:
Edouard Griffiths
2026-04-23 01:20:58 +02:00
committed by GitHub
+2 -2
View File
@@ -74,8 +74,8 @@ bool DeviceUSRPParams::open(const QString &deviceStr, bool channelNumOnly)
else if (deviceStr.contains("product=B210"))
{
// Auto-calculation below can be slow, so use hardcoded values for B210
m_srRangeRx = uhd::meta_range_t(1e5, 61.444e6);
m_srRangeTx = uhd::meta_range_t(1e5, 61.444e6);
m_srRangeRx = uhd::meta_range_t(1e5, 61.44e6);
m_srRangeTx = uhd::meta_range_t(1e5, 61.44e6);
}
else
{