Commit 2ddcf248 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent f01eecd3
......@@ -48,7 +48,7 @@ md5sum = a2ba0343ddb7f9cf2904a4c5c751f68a
[template-enb]
_update_hash_filename_ = instance-enb.jinja2.cfg
md5sum = eb8d58e5fcc2c06c5ce3395ff7f41d66
md5sum = 54cfd8487dd29a9a38708b687b34e844
[template-gnb]
_update_hash_filename_ = instance-gnb.jinja2.cfg
......
......@@ -95,7 +95,7 @@ def request_sim(core, sim_n):
"k": "00112233445566778899AABBCCDDEEFF",
"impu": "impu%d" % sim_n,
"impi": "impi%d@amarisoft.com" % sim_n,
})})
})})
return sim
print()
......
......@@ -42,7 +42,6 @@ def request_cell(enb, cell_ref, kw):
enb_guid = enb.getInstanceGuid()
cell = request(ors,
software_type="enb",
#partition_reference="%s/cell%d" % (enb_ref, sim_n),
partition_reference=cell_ref,
shared=True,
filter_kw={"instance_guid": enb_guid},
......@@ -74,5 +73,22 @@ CELL1_a = {
}
iCELL1_a = request_cell(enb, 'CELL1_a', CELL1_a)
print('iCELL1_a:', iCELL1_a)
CELL1_b = {
'cell_type': 'lte',
'rf_mode': 'tdd',
'bandwidth': '5 MHz',
'dl_earfcn': 38100, # 2605 MHz
'pci': 2,
'cell_id': '0x02',
'ru': { # CELL1_b shares RU with CELL1_a referring to it via cell
'ru_type': 'ruincell_ref',
'ruincell_ref': 'CELL1_a'
}
}
iCELL1_b = request_cell(enb, 'CELL1_b', CELL1_b)
print('iCELL1_b:', iCELL1_b)
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