aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/osmo-trx.cpp
diff options
context:
space:
mode:
authorTom Tsou <tom.tsou@ettus.com>2017-03-30 17:22:58 -0700
committerTom Tsou <tom@tsou.cc>2017-05-19 17:25:44 +0000
commitd6ae8648fff2b0fa6e20ec474a22fd7b33be7704 (patch)
tree2c0a93669a467e029f8e2bc9e4da6ae3885b7721 /Transceiver52M/osmo-trx.cpp
parente51a8f029e1f691ee3c33d893e8b45a94e5d7bae (diff)
radioInterface: Remove UmTRX 'diversity' option
The 'diversity' option was an experimental 2 antenna receiver implementation for UmTRX. The implementation has not been maintained and current working status is unknown. In addition to code rot, Coverity is triggering errors in the associated code sections. Removal of code cleans up many cases of special handling that were necessary to accommodate the implementation. Change-Id: I46752ccf5dbcffbec806081dec03e69a0fbdcdb7
Diffstat (limited to 'Transceiver52M/osmo-trx.cpp')
-rw-r--r--Transceiver52M/osmo-trx.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/Transceiver52M/osmo-trx.cpp b/Transceiver52M/osmo-trx.cpp
index 4a10bbe..1c0ceb1 100644
--- a/Transceiver52M/osmo-trx.cpp
+++ b/Transceiver52M/osmo-trx.cpp
@@ -72,7 +72,6 @@ struct trx_config {
bool extref;
bool gpsref;
Transceiver::FillerType filler;
- bool diversity;
bool mcbts;
double offset;
double rssi_offset;
@@ -101,7 +100,6 @@ bool trx_setup_config(struct trx_config *config)
}
edgestr = config->edge ? "Enabled" : "Disabled";
- divstr = config->diversity ? "Enabled" : "Disabled";
mcstr = config->mcbts ? "Enabled" : "Disabled";
if (config->extref)
@@ -142,7 +140,6 @@ bool trx_setup_config(struct trx_config *config)
ost << " Reference............... " << refstr << std::endl;
ost << " C0 Filler Table......... " << fillstr << std::endl;
ost << " Multi-Carrier........... " << mcstr << std::endl;
- ost << " Diversity............... " << divstr << std::endl;
ost << " Tuning offset........... " << config->offset << std::endl;
ost << " RSSI to dBm offset...... " << config->rssi_offset << std::endl;
ost << " Swap channels........... " << config->swap_channels << std::endl;
@@ -173,12 +170,6 @@ RadioInterface *makeRadioInterface(struct trx_config *config,
radio = new RadioInterfaceResamp(usrp, config->tx_sps,
config->rx_sps);
break;
- case RadioDevice::DIVERSITY:
-
-
- radio = new RadioInterfaceDiversity(usrp, config->tx_sps,
- config->chans);
- break;
case RadioDevice::MULTI_ARFCN:
radio = new RadioInterfaceMulti(usrp, config->tx_sps,
config->rx_sps, config->chans);
@@ -257,7 +248,6 @@ static void print_help()
" -i IP address of GSM core\n"
" -p Base port number\n"
" -e Enable EDGE receiver\n"
- " -d Enable dual channel diversity receiver (deprecated)\n"
" -m Enable multi-ARFCN transceiver (default=disabled)\n"
" -x Enable external 10 MHz reference\n"
" -g Enable GPSDO reference\n"
@@ -289,7 +279,6 @@ static void handle_options(int argc, char **argv, struct trx_config *config)
config->gpsref = false;
config->filler = Transceiver::FILLER_ZERO;
config->mcbts = false;
- config->diversity = false;
config->offset = 0.0;
config->rssi_offset = 0.0;
config->swap_channels = false;
@@ -319,9 +308,6 @@ static void handle_options(int argc, char **argv, struct trx_config *config)
case 'm':
config->mcbts = true;
break;
- case 'd':
- config->diversity = true;
- break;
case 'x':
config->extref = true;
break;
@@ -374,24 +360,6 @@ static void handle_options(int argc, char **argv, struct trx_config *config)
goto bad_config;
}
- /* Special restrictions on (deprecated) diversity configuration */
- if (config->diversity) {
- if (config->mcbts || config->edge) {
- std::cout << "Multi-carrier/EDGE diversity unsupported" << std::endl;
- goto bad_config;
- }
-
- if (config->rx_sps != 1) {
- std::cout << "Diversity only supported with 1 SPS" << std::endl;
- goto bad_config;
- }
-
- if (config->chans != 2) {
- std::cout << "Diversity only supported with 2 channels" << std::endl;
- goto bad_config;
- }
- }
-
if (config->edge && (config->filler == Transceiver::FILLER_NORM_RAND))
config->filler = Transceiver::FILLER_EDGE_RAND;