Commit d4a0be77 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent c84afb6b
...@@ -11,6 +11,9 @@ json_params_empty = """{ ...@@ -11,6 +11,9 @@ json_params_empty = """{
} }
}""" }"""
# 2 cells sharing SDR-based RU consisting of 2 SDR boards (4tx + 4rx ports max)
# RU definition is embedded into cell for simplicity of management
RU1 = { RU1 = {
'ru_type': 'sdr', 'ru_type': 'sdr',
'ru_link_type': 'sdr', 'ru_link_type': 'sdr',
...@@ -19,6 +22,31 @@ RU1 = { ...@@ -19,6 +22,31 @@ RU1 = {
'n_antenna_ul': 2, 'n_antenna_ul': 2,
} }
CELL1_a = {
'cell_type': 'lte',
'rf_mode': 'tdd',
'bandwidth': '5 MHz',
'dl_earfcn': 38050, # 2600 MHz
'pci': 1,
'cell_id': "0x01",
'ru': RU1, # RU definition embedded into CELL
}
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'
}
}
# another cell that uses CPRI-based Lopcomm RU
# here we instantiate RU separately since embedding RU into a cell is covered by CELL1_a above
RU2 = { RU2 = {
'ru_type': 'lopcomm', 'ru_type': 'lopcomm',
'ru_link_type': 'cpri', 'ru_link_type': 'cpri',
...@@ -36,36 +64,23 @@ RU2 = { ...@@ -36,36 +64,23 @@ RU2 = {
'n_antenna_ul': 1, 'n_antenna_ul': 1,
} }
CELL1 = { CELL2_1 = {
'cell_type': 'lte', 'cell_type': 'lte',
'rf_mode': 'fdd', 'rf_mode': 'fdd',
'bandwidth': '5 MHz', 'bandwidth': '5 MHz',
'dl_earfcn': 3350, # 2680 MHz 'dl_earfcn': XXX, # XXX MHz
'pci': 1, 'pci': 21,
'cell_id': "0x01", 'cell_id': "0x21",
'ru': RU1, # RU definition embedded into CELL 'ru': { # CELL1_b shares RU with CELL1_a referring to it via cell
}
CELL2 = {
'cell_type': 'lte',
'rf_mode': 'fdd',
'bandwidth': '5 MHz',
'dl_earfcn': 3400, # 2685 MHz
'pci': 2,
'cell_id': "0x02",
'ru': { # CELL2 shares RU with CELL1 referring to it via CELL1 reference
'ru_type': 'ruincell_ref', 'ru_type': 'ruincell_ref',
'ruincell_ref': 'CELL1' 'ruincell_ref': 'CELL1_a'
} }
} }
# XXX CELL3 TDD LTE # XXX CELL3 TDD LTE
# XXX CELL3 FDD NR # XXX CELL3 FDD NR
# XXX RU embedded
# XXX RU_ref # XXX RU_ref
# XXX RU_ref_incell
jCELL1 = json.dumps(CELL1) jCELL1 = json.dumps(CELL1)
jCELL2 = json.dumps(CELL2) jCELL2 = json.dumps(CELL2)
......
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