aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-09-13 17:54:25 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2019-09-13 17:54:27 +0200
commite2ac20a96edbac405a5543aa56c8e0ee39123060 (patch)
tree989fa77c121a96ffd9ea8598eac3db89d66c896c
parent62845241a2494b7e12407c96f10ddfbebf76cbde (diff)
UHDDevice: Drop unneeded MULTI_ARFCN checks
After previous changes, radioInterfaceMulti is expected to handle channel conversion correctly, so it will always use chan 0 for all these functions. This simplifies code in radioDevice avoiding need to add checks to all devices supporting multi-arfcn in the future. Change-Id: Ib2cd50a6ceaeedc6aaf3e1bb51d33b52911b6eba
-rw-r--r--Transceiver52M/device/uhd/UHDDevice.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/Transceiver52M/device/uhd/UHDDevice.cpp b/Transceiver52M/device/uhd/UHDDevice.cpp
index 3b59291..809bade 100644
--- a/Transceiver52M/device/uhd/UHDDevice.cpp
+++ b/Transceiver52M/device/uhd/UHDDevice.cpp
@@ -247,9 +247,6 @@ void uhd_device::set_rates()
double uhd_device::setTxGain(double db, size_t chan)
{
- if (iface == MULTI_ARFCN)
- chan = 0;
-
if (chan >= tx_gains.size()) {
LOGC(DDEV, ALERT) << "Requested non-existent channel" << chan;
return 0.0f;
@@ -281,9 +278,6 @@ double uhd_device::setTxGain(double db, size_t chan)
double uhd_device::setRxGain(double db, size_t chan)
{
- if (iface == MULTI_ARFCN)
- chan = 0;
-
if (chan >= rx_gains.size()) {
LOGC(DDEV, ALERT) << "Requested non-existent channel " << chan;
return 0.0f;
@@ -299,9 +293,6 @@ double uhd_device::setRxGain(double db, size_t chan)
double uhd_device::getRxGain(size_t chan)
{
- if (iface == MULTI_ARFCN)
- chan = 0;
-
if (chan >= rx_gains.size()) {
LOGC(DDEV, ALERT) << "Requested non-existent channel " << chan;
return 0.0f;
@@ -312,9 +303,6 @@ double uhd_device::getRxGain(size_t chan)
double uhd_device::getTxGain(size_t chan)
{
- if (iface == MULTI_ARFCN)
- chan = 0;
-
if (chan >= tx_gains.size()) {
LOGC(DDEV, ALERT) << "Requested non-existent channel " << chan;
return 0.0f;