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

.

parent f01eecd3
...@@ -48,7 +48,7 @@ md5sum = a2ba0343ddb7f9cf2904a4c5c751f68a ...@@ -48,7 +48,7 @@ md5sum = a2ba0343ddb7f9cf2904a4c5c751f68a
[template-enb] [template-enb]
_update_hash_filename_ = instance-enb.jinja2.cfg _update_hash_filename_ = instance-enb.jinja2.cfg
md5sum = eb8d58e5fcc2c06c5ce3395ff7f41d66 md5sum = 54cfd8487dd29a9a38708b687b34e844
[template-gnb] [template-gnb]
_update_hash_filename_ = instance-gnb.jinja2.cfg _update_hash_filename_ = instance-gnb.jinja2.cfg
......
...@@ -42,7 +42,6 @@ def request_cell(enb, cell_ref, kw): ...@@ -42,7 +42,6 @@ def request_cell(enb, cell_ref, kw):
enb_guid = enb.getInstanceGuid() enb_guid = enb.getInstanceGuid()
cell = request(ors, cell = request(ors,
software_type="enb", software_type="enb",
#partition_reference="%s/cell%d" % (enb_ref, sim_n),
partition_reference=cell_ref, partition_reference=cell_ref,
shared=True, shared=True,
filter_kw={"instance_guid": enb_guid}, filter_kw={"instance_guid": enb_guid},
...@@ -74,5 +73,22 @@ CELL1_a = { ...@@ -74,5 +73,22 @@ CELL1_a = {
} }
iCELL1_a = request_cell(enb, 'CELL1_a', CELL1_a) iCELL1_a = request_cell(enb, 'CELL1_a', CELL1_a)
print('iCELL1_a:', iCELL1_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