Commit 4a053944 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent d7be43f7
......@@ -53,6 +53,7 @@
tac: 0x0001,
n_id_cell: 1,
dl_earfcn: 38050,
ul_earfcn: 38050,
root_sequence_index: 204,
// Handover XXX same code for both LTE and NR
......@@ -63,6 +64,7 @@
cell_id: 0x1A2D002, // -> CELL1_b
n_id_cell: 2,
dl_earfcn: 38100,
ul_earfcn: 38100,
tac: 0x0001,
},
{
......@@ -71,7 +73,7 @@
n_id_cell: 3,
gnb_id_bits
dl_nr_arfcn
ssb_nr_arfcn ... + lte.default_ssb_nr_arfcn(cell2.dl_nr_arfcn)
ssb_nr_arfcn
ul_nr_arfcn
tac
band
......@@ -638,6 +640,7 @@
tac: 0x0001,
n_id_cell: 2,
dl_earfcn: 38100,
ul_earfcn: 38100,
root_sequence_index: 205,
// Handover XXX same code for both LTE and NR
......@@ -648,6 +651,7 @@
cell_id: 0x1A2D001, // -> CELL1_a
n_id_cell: 1,
dl_earfcn: 38050,
ul_earfcn: 38050,
tac: 0x0001,
},
{
......@@ -656,7 +660,7 @@
n_id_cell: 3,
gnb_id_bits
dl_nr_arfcn
ssb_nr_arfcn ... + lte.default_ssb_nr_arfcn(cell2.dl_nr_arfcn)
ssb_nr_arfcn
ul_nr_arfcn
tac
band
......
......@@ -17,7 +17,8 @@ def j2render(config, jcfg):
textctx = ''
for k, v in ctx.items():
textctx += 'json %s %s\n' % (k, json.dumps(v))
textctx += 'import json_module json\n'
textctx += 'import json_module json\n'
textctx += 'import earfcn_module xlte.earfcn\n'
textctx += 'import nrarfcn_module nrarfcn\n'
buildout = None # stub
r = jinja2_template.Recipe(buildout, "recipe", {
......
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