enb: remove freq config for zmq operation

specifiying the rx/tx_freq for the eNB is optional. But when
it's done it needs to be correct. There seems to be an issue
when mapping the freq[0-3] between srsENB and Amarisoft eNB.

So it's safe to just drop the config here altogether.

Change-Id: I70f5776173c2df5894031f68df2f6c3a900b79f8
This commit is contained in:
Andre Puschmann 2020-05-26 22:57:54 +02:00 committed by srs_andre
parent eddff7c03c
commit 346ffd9192
1 changed files with 0 additions and 17 deletions

View File

@ -172,23 +172,6 @@ class eNodeB(log.Origin, metaclass=ABCMeta):
+ ',rx_port2=tcp://' + self.ue.addr() + ':2005' \
+ ',rx_port3=tcp://' + self.ue.addr() + ':2007'
if self._num_cells == 1:
# Single carrier
if self.num_ports() == 1:
# SISO
rf_dev_args += ',tx_freq0=2630e6,rx_freq0=2510e6'
elif self.num_ports() == 2:
# MIMO
rf_dev_args += ',tx_freq0=2630e6,tx_freq1=2630e6,rx_freq0=2510e6,rx_freq1=2510e6'
elif self._num_cells == 2:
# 2x class
if self.num_ports() == 1:
# SISO
rf_dev_args += ',tx_freq0=2630e6,tx_freq1=2650e6,rx_freq0=2510e6,rx_freq1=2530e6'
elif self.num_ports() == 2:
# MIMO
rf_dev_args += ',tx_freq0=2630e6,tx_freq1=2630e6,tx_freq2=2650e6,tx_freq3=2650e6,rx_freq0=2510e6,rx_freq1=2510e6,rx_freq2=2530e6,rx_freq3=2530e6'
rf_dev_args += ',id=enb,base_srate=' + str(base_srate)
return rf_dev_args