aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/device
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-05-08 20:49:00 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2018-05-08 20:49:04 +0200
commit55df1e43e348af3e24af9e8c4589141bb1e32fef (patch)
tree2170609f352efecfe420a1af4e6e4a539057fa06 /Transceiver52M/device
parente9424e241fd3c51b6acaf1fd77a123f60cc1571d (diff)
UHDDevice: Fix setup failure with LimeSuite > 18.04.1
Fixes: https://github.com/myriadrf/LimeSuite/issues/184 Change-Id: I48ead8b8996981263297b66c0c7d3d0972261316
Diffstat (limited to 'Transceiver52M/device')
-rw-r--r--Transceiver52M/device/uhd/UHDDevice.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Transceiver52M/device/uhd/UHDDevice.cpp b/Transceiver52M/device/uhd/UHDDevice.cpp
index 0d59bfc..a0052c8 100644
--- a/Transceiver52M/device/uhd/UHDDevice.cpp
+++ b/Transceiver52M/device/uhd/UHDDevice.cpp
@@ -732,8 +732,8 @@ int uhd_device::open(const std::string &args, int ref, bool swap_channels)
}
} else if (dev_type == LIMESDR) {
for (size_t i = 0; i < chans; i++) {
- usrp_dev->set_tx_bandwidth(5e6, i);
- usrp_dev->set_rx_bandwidth(5e6, i);
+ usrp_dev->set_tx_bandwidth(5.2e6, i);
+ usrp_dev->set_rx_bandwidth(1.4001e6, i);
}
}