srs_{enb,ue}: don't set sc12 as OTW format

Change-Id: I7fc20d998b082f5c37b2451f1900161f997954b1
This commit is contained in:
Andre Puschmann 2020-04-23 18:43:58 +02:00 committed by pespin
parent 549826d424
commit d27b3ba2e2
2 changed files with 0 additions and 8 deletions

View File

@ -199,10 +199,6 @@ class srsENB(enb.eNodeB):
elif self._num_prb > 25:
rf_dev_args += 'num_recv_frames=64,num_send_frames=64'
if self._num_prb > 50:
# Reduce over the wire format to sc12
rf_dev_args += ',otw_format=sc12'
config.overlay(values, dict(enb=dict(rf_dev_args=rf_dev_args)))
self.gen_conf = values

View File

@ -285,10 +285,6 @@ class srsUE(MS):
elif self.enb.num_prb() > 50:
rf_dev_args += 'num_recv_frames=64,num_send_frames=64'
# For 15 and 20 MHz, further reduce over the wire format to sc12
if self.enb.num_prb() >= 75:
rf_dev_args += ',otw_format=sc12'
config.overlay(values, dict(ue=dict(rf_dev_args=rf_dev_args)))
self.dbg('SRSUE CONFIG:\n' + pprint.pformat(values))