This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
srs_andre gerrit-no-reply at lists.osmocom.orgsrs_andre has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-gsm-tester/+/23349 )
Change subject: ms_srs: turn tx/rx_gain into INT and make them optional
......................................................................
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
---
M src/osmo_gsm_tester/obj/ms_srs.py
M src/osmo_gsm_tester/templates/srsue.conf.tmpl
2 files changed, 6 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-gsm-tester refs/changes/49/23349/1
diff --git a/src/osmo_gsm_tester/obj/ms_srs.py b/src/osmo_gsm_tester/obj/ms_srs.py
index 96b1cdf..745a18e 100644
--- a/src/osmo_gsm_tester/obj/ms_srs.py
+++ b/src/osmo_gsm_tester/obj/ms_srs.py
@@ -39,8 +39,8 @@
'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,
'dl_freq': schema.STR,
'ul_freq': schema.STR
diff --git a/src/osmo_gsm_tester/templates/srsue.conf.tmpl b/src/osmo_gsm_tester/templates/srsue.conf.tmpl
index ea61272..784cf03 100644
--- a/src/osmo_gsm_tester/templates/srsue.conf.tmpl
+++ b/src/osmo_gsm_tester/templates/srsue.conf.tmpl
@@ -45,8 +45,12 @@
ul_freq = ${ue.ul_freq}
% 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}
--
To view, visit https://gerrit.osmocom.org/c/osmo-gsm-tester/+/23349
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-gsm-tester
Gerrit-Branch: master
Gerrit-Change-Id: I473ff3ae679784178574d2f76b612dbf77180490
Gerrit-Change-Number: 23349
Gerrit-PatchSet: 1
Gerrit-Owner: srs_andre <andre at softwareradiosystems.com>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210312/bdf1d0be/attachment.htm>