This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Harald Welte gerrit-no-reply at lists.osmocom.orgHarald Welte has submitted this change and it was merged.
Change subject: UHDDevice: Fix setup failure with LimeSuite > 18.04.1
......................................................................
UHDDevice: Fix setup failure with LimeSuite > 18.04.1
Fixes: https://github.com/myriadrf/LimeSuite/issues/184
Change-Id: I48ead8b8996981263297b66c0c7d3d0972261316
---
M Transceiver52M/device/uhd/UHDDevice.cpp
1 file changed, 2 insertions(+), 2 deletions(-)
Approvals:
Harald Welte: Looks good to me, approved
Jenkins Builder: Verified
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 @@
}
} 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);
}
}
--
To view, visit https://gerrit.osmocom.org/8071
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I48ead8b8996981263297b66c0c7d3d0972261316
Gerrit-PatchSet: 1
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Owner: Pau Espin Pedrol <pespin at sysmocom.de>
Gerrit-Reviewer: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Jenkins Builder