Harald Welte has submitted this change and it was merged. (
https://gerrit.osmocom.org/12096 )
Change subject: lms: Allow setting Tx/RxGain for chan!=0
......................................................................
lms: Allow setting Tx/RxGain for chan!=0
Related: OS#3346
Change-Id: I5fae92a7ed5e2d92be12b9dfd33fc56195030c0b
---
M Transceiver52M/device/lms/LMSDevice.cpp
1 file changed, 0 insertions(+), 10 deletions(-)
Approvals:
Harald Welte: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/Transceiver52M/device/lms/LMSDevice.cpp
b/Transceiver52M/device/lms/LMSDevice.cpp
index 712652a..21bcece 100644
--- a/Transceiver52M/device/lms/LMSDevice.cpp
+++ b/Transceiver52M/device/lms/LMSDevice.cpp
@@ -322,11 +322,6 @@
double LMSDevice::setTxGain(double dB, size_t chan)
{
- if (chan) {
- LOGC(DDEV, ALERT) << "Invalid channel " << chan;
- return 0.0;
- }
-
if (dB > maxTxGain())
dB = maxTxGain();
if (dB < minTxGain())
@@ -342,11 +337,6 @@
double LMSDevice::setRxGain(double dB, size_t chan)
{
- if (chan) {
- LOGC(DDEV, ALERT) << "Invalid channel " << chan;
- return 0.0;
- }
-
if (dB > maxRxGain())
dB = maxRxGain();
if (dB < minRxGain())
--
To view, visit https://gerrit.osmocom.org/12096
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I5fae92a7ed5e2d92be12b9dfd33fc56195030c0b
Gerrit-Change-Number: 12096
Gerrit-PatchSet: 3
Gerrit-Owner: Pau Espin Pedrol <[email protected]>
Gerrit-Reviewer: Harald Welte <[email protected]>
Gerrit-Reviewer: Jenkins Builder (1000002)