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

.

parent 301c7155
......@@ -60,6 +60,8 @@
dl_earfcn: 38050,
ul_earfcn: 38050,
root_sequence_index: 204,
inactivity_timer: 10000,
// Handover
ncell_list: [
......@@ -139,7 +141,6 @@
srs_period: 40,
srs_hopping_bandwidth: 0,
},
manual_ref_signal_power: true,
drb_config: "CELL_a-drb.cfg",
......@@ -207,9 +208,6 @@
cipher_algo_pref: [],
integ_algo_pref: [2, 1],
// XXX -> cell ?
inactivity_timer: 10000,
srb_config: [
{
id: 1,
......@@ -264,6 +262,7 @@
ssb_pos_bitmap: "10000000",
root_sequence_index: 2,
inactivity_timer: 10000,
// Handover
ncell_list: [
......@@ -309,9 +308,7 @@
scell_list: [
],
// tune NR parameters for the cell XXX -> sdr/ors ? (see lte ^^^)
manual_ref_signal_power: true,
ss_pbch_block_power: 16,
// tune NR parameters for the cell
tdd_ul_dl_config: {
......@@ -648,7 +645,6 @@
},
cipher_algo_pref: [],
integ_algo_pref: [2, 1],
inactivity_timer: 10000,
meas_config_desc: {
a1_report_type: "rsrp",
......
......@@ -14,6 +14,8 @@ def j2render(src, out, jcfg):
ctx = json.loads(jcfg)
assert '_standalone' not in ctx
ctx['_standalone'] = True
assert 'ors' not in ctx
ctx['ors'] = False
textctx = ''
for k, v in ctx.items():
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