Commit b4cf768f authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 8f931619
...@@ -7,7 +7,8 @@ ...@@ -7,7 +7,8 @@
"required": [ "required": [
"bandwidth", "bandwidth",
"dl_nr_arfcn" "dl_nr_arfcn",
"nr_band"
], ],
"properties": { "properties": {
"cell_type": { "cell_type": {
......
This diff is collapsed.
...@@ -45,7 +45,7 @@ CELL1_b = { ...@@ -45,7 +45,7 @@ CELL1_b = {
} }
} }
# another couple of cells that use CPRI-based Lopcomm radio units # LTE + NR cells that use CPRI-based Lopcomm radio units
# here we instantiate RUs separately since embedding RU into a cell is demonstrated by CELL1_a above # here we instantiate RUs separately since embedding RU into a cell is demonstrated by CELL1_a above
RU2_a = { RU2_a = {
'ru_type': 'lopcomm', 'ru_type': 'lopcomm',
...@@ -74,23 +74,26 @@ CELL2_a = { ...@@ -74,23 +74,26 @@ CELL2_a = {
'bandwidth': '5 MHz', 'bandwidth': '5 MHz',
'dl_earfcn': 3350, # 2680 MHz 'dl_earfcn': 3350, # 2680 MHz
'pci': 21, 'pci': 21,
'cell_id': "0x21", 'cell_id': '0x21',
'ru': { # CELL2_a links to RU2_a by its reference 'ru': { # CELL2_a links to RU2_a by its reference
'ru_type': 'ru_ref', 'ru_type': 'ru_ref',
'ru_ref': 'RU2_a' 'ru_ref': 'RU2_a'
} }
} }
CELL2_b = copy.deepcopy(CELL2_a) CELL2_b = {
CELL2_b.update({ 'cell_type': 'nr',
'dl_earfcn': 3410, # 2686 MHz 'rf_mode': 'fdd',
'bandwidth': 5,
'dl_nr_arfcn': 537200, # 2686 MHz
'nr_band': 7,
'pci': 22, 'pci': 22,
'cell_id': "0x22" 'cell_id': '0x22',
}) 'ru': {
CELL2_b['ru']['ru_ref'] = 'RU2_b' 'ru_type': 'ru_ref',
'ru_ref': 'RU2_b'
}
# XXX CELL3 FDD NR }
jjdumps = lambda obj: json.dumps(json.dumps(obj)) jjdumps = lambda obj: json.dumps(json.dumps(obj))
jCELL1_a = jjdumps(CELL1_a) jCELL1_a = jjdumps(CELL1_a)
......
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