ms_srs: turn tx/rx_gain into INT and make them optional

when they are greater than 0 they are written as config paramter.
if they are -1 they are disbaled and automatic gain calibration is
used.

Change-Id: I473ff3ae679784178574d2f76b612dbf77180490
This commit is contained in:
Andre Puschmann 2021-03-10 21:27:59 +01:00 committed by Pau Espin Pedrol
parent 1a1970721a
commit 1bba2891c5
2 changed files with 6 additions and 2 deletions

View File

@ -39,8 +39,8 @@ def on_register_schemas():
'additional_args[]': schema.STR,
'airplane_t_on_ms': schema.INT,
'airplane_t_off_ms': schema.INT,
'tx_gain': schema.UINT,
'rx_gain': schema.UINT,
'tx_gain': schema.INT,
'rx_gain': schema.INT,
'freq_offset': schema.INT,
}
for key, val in RunNode.schema().items():

View File

@ -39,8 +39,12 @@ dl_earfcn = 2850,3050
dl_earfcn = 2850
% endif
freq_offset = ${ue.freq_offset}
% if int(ue.tx_gain) > 0:
tx_gain = ${ue.tx_gain}
% endif
% if int(ue.rx_gain) > 0:
rx_gain = ${ue.rx_gain}
% endif
#nof_radios = 1
nof_antennas = ${ue.num_antennas}