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:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user