From 55df1e43e348af3e24af9e8c4589141bb1e32fef Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Tue, 8 May 2018 20:49:00 +0200 Subject: UHDDevice: Fix setup failure with LimeSuite > 18.04.1 Fixes: https://github.com/myriadrf/LimeSuite/issues/184 Change-Id: I48ead8b8996981263297b66c0c7d3d0972261316 --- Transceiver52M/device/uhd/UHDDevice.cpp | 4 ++-- 1 file 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); } } -- cgit v1.2.3