Commit 38100623 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent c1a7d5ec
...@@ -41,6 +41,8 @@ ...@@ -41,6 +41,8 @@
"00101", "00101",
], ],
# XXX -> rrh_ors ?
manual_ref_signal_power: true,
cyclic_prefix: "normal", cyclic_prefix: "normal",
......
...@@ -92,12 +92,13 @@ CELL2_b['ru']['ru_ref'] = 'RU2_b' ...@@ -92,12 +92,13 @@ CELL2_b['ru']['ru_ref'] = 'RU2_b'
# XXX CELL3 FDD NR # XXX CELL3 FDD NR
jCELL1_a = json.dumps(CELL1_a) jjdumps = lambda obj: json.dumps(json.dumps(obj))
jCELL1_b = json.dumps(CELL1_b) jCELL1_a = jjdumps(CELL1_a)
jCELL2_a = json.dumps(CELL2_a) jCELL1_b = jjdumps(CELL1_b)
jCELL2_b = json.dumps(CELL2_b) jCELL2_a = jjdumps(CELL2_a)
jRU2_a = json.dumps(RU2_a) jCELL2_b = jjdumps(CELL2_b)
jRU2_b = json.dumps(RU2_b) jRU2_a = jjdumps(RU2_a)
jRU2_b = jjdumps(RU2_b)
json_params = """{ json_params = """{
"earfcn": 126357, "earfcn": 126357,
"tx_gain": 50, "tx_gain": 50,
...@@ -161,9 +162,10 @@ json_params = """{ ...@@ -161,9 +162,10 @@ json_params = """{
"slap_software_type": "enb", "slap_software_type": "enb",
"_": %(jRU2_b)s "_": %(jRU2_b)s
} }
], ]
} }
}""" % globals() }""" % globals()
import os import os
from jinja2 import Environment, StrictUndefined, \ from jinja2 import Environment, StrictUndefined, \
BaseLoader, TemplateNotFound, PrefixLoader BaseLoader, TemplateNotFound, PrefixLoader
......
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