Commit 844b327e authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 301c7155
...@@ -60,6 +60,8 @@ ...@@ -60,6 +60,8 @@
dl_earfcn: 38050, dl_earfcn: 38050,
ul_earfcn: 38050, ul_earfcn: 38050,
root_sequence_index: 204, root_sequence_index: 204,
inactivity_timer: 10000,
// Handover // Handover
ncell_list: [ ncell_list: [
...@@ -139,7 +141,6 @@ ...@@ -139,7 +141,6 @@
srs_period: 40, srs_period: 40,
srs_hopping_bandwidth: 0, srs_hopping_bandwidth: 0,
}, },
manual_ref_signal_power: true,
drb_config: "CELL_a-drb.cfg", drb_config: "CELL_a-drb.cfg",
...@@ -207,9 +208,6 @@ ...@@ -207,9 +208,6 @@
cipher_algo_pref: [], cipher_algo_pref: [],
integ_algo_pref: [2, 1], integ_algo_pref: [2, 1],
// XXX -> cell ?
inactivity_timer: 10000,
srb_config: [ srb_config: [
{ {
id: 1, id: 1,
...@@ -264,6 +262,7 @@ ...@@ -264,6 +262,7 @@
ssb_pos_bitmap: "10000000", ssb_pos_bitmap: "10000000",
root_sequence_index: 2, root_sequence_index: 2,
inactivity_timer: 10000,
// Handover // Handover
ncell_list: [ ncell_list: [
...@@ -309,9 +308,7 @@ ...@@ -309,9 +308,7 @@
scell_list: [ scell_list: [
], ],
// tune NR parameters for the cell XXX -> sdr/ors ? (see lte ^^^) // tune NR parameters for the cell
manual_ref_signal_power: true,
ss_pbch_block_power: 16,
tdd_ul_dl_config: { tdd_ul_dl_config: {
...@@ -648,7 +645,6 @@ ...@@ -648,7 +645,6 @@
}, },
cipher_algo_pref: [], cipher_algo_pref: [],
integ_algo_pref: [2, 1], integ_algo_pref: [2, 1],
inactivity_timer: 10000,
meas_config_desc: { meas_config_desc: {
a1_report_type: "rsrp", a1_report_type: "rsrp",
......
...@@ -14,6 +14,8 @@ def j2render(src, out, jcfg): ...@@ -14,6 +14,8 @@ def j2render(src, out, jcfg):
ctx = json.loads(jcfg) ctx = json.loads(jcfg)
assert '_standalone' not in ctx assert '_standalone' not in ctx
ctx['_standalone'] = True ctx['_standalone'] = True
assert 'ors' not in ctx
ctx['ors'] = False
textctx = '' textctx = ''
for k, v in ctx.items(): for k, v in ctx.items():
textctx += 'json %s %s\n' % (k, json.dumps(v)) textctx += 'json %s %s\n' % (k, json.dumps(v))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment