Commit 9421be1f authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 45f2c7c6
......@@ -69,14 +69,14 @@
rat: "eutra",
cell_id: 0x1A2D022, // -> CELL2
n_id_cell: 22,
dl_earfcn: 300,
dl_earfcn: 500,
tac: 0x0001,
},
{
rat: "eutra",
cell_id: 0x1A2D023, // -> CELL3
n_id_cell: 23,
dl_earfcn: 500,
dl_earfcn: 2750,
tac: 0x0001,
},
......@@ -634,7 +634,7 @@
cell_id: 0x22,
tac: 0x0001,
n_id_cell: 22,
dl_earfcn: 300,
dl_earfcn: 500,
root_sequence_index: 205,
// Handover XXX same code for both LTE and NR
......@@ -651,7 +651,7 @@
rat: "eutra",
cell_id: 0x1A2D023, // -> CELL3
n_id_cell: 23,
dl_earfcn: 500,
dl_earfcn: 2750,
tac: 0x0001,
},
......@@ -673,7 +673,7 @@
// tune LTE parameters for the cell
n_rb_dl: 75,
n_rb_dl: 100,
si_coderate: 0.2,
pdsch_dedicated: {
......@@ -1209,7 +1209,7 @@
cell_id: 0x23,
tac: 0x0001,
n_id_cell: 23,
dl_earfcn: 500,
dl_earfcn: 2750,
root_sequence_index: 206,
// Handover XXX same code for both LTE and NR
......@@ -1226,7 +1226,7 @@
rat: "eutra",
cell_id: 0x1A2D022, // -> CELL2
n_id_cell: 22,
dl_earfcn: 300,
dl_earfcn: 500,
tac: 0x0001,
},
......
......@@ -214,11 +214,10 @@ def iRU3_SDR1_fLTE2(ienb):
})
def iRU2_LOPCOMM_fLTE3(ienb):
# supports: 2110 - 2170 MHz
RU_0002 = {
# supports: 2110 - 2170 MHz (B1)
RU_40002 = {
'ru_type': 'lopcomm',
'ru_link_type': 'cpri',
# 'mac_addr': 'XXX',
'cpri_link': {
'sdr_dev': 0,
'sfp_port': 0,
......@@ -234,18 +233,16 @@ def iRU2_LOPCOMM_fLTE3(ienb):
'rx_gain': 0,
}
# supports: 2110 - 2170 MHz
RU_0004 = copy.deepcopy(RU_0002)
# RU_0004['mac_addr'] = 'YYY'
RU_0004['cpri_link']['sfp_port'] = 1
# supports: 2110 - 2170 MHz (B1)
RU_60004 = copy.deepcopy(RU_40002)
RU_60004['cpri_link']['sfp_port'] = 1
# supports: 2110 - 2170 MHz
RU_0007 = copy.deepcopy(RU_0002)
# RU_0007['mac_addr'] = 'ZZZ'
RU_0007['cpri_link']['sfp_port'] = 2
# supports: 2620 - 2690 MHz (B7)
RU_70002 = copy.deepcopy(RU_40002)
RU_70002['cpri_link']['sfp_port'] = 2
if 1:
ienb.ishared('Radio Unit 1', '_RU1', RU_0002)
ienb.ishared('Radio Unit 1', '_RU1', RU_40002)
ienb.ishared('Cell 1', '_CELL1', {
'cell_type': 'lte',
'rf_mode': 'fdd',
......@@ -260,12 +257,12 @@ def iRU2_LOPCOMM_fLTE3(ienb):
})
if 1:
ienb.ishared('Radio Unit 2', '_RU2', RU_0004)
ienb.ishared('Radio Unit 2', '_RU2', RU_60004)
ienb.ishared('Cell 2', '_CELL2', {
'cell_type': 'lte',
'rf_mode': 'fdd',
'dl_earfcn': 300, # 2140 MHz @ B1
'bandwidth': '15 MHz',
'dl_earfcn': 500, # 2160 MHz @ B1
'bandwidth': '20 MHz',
'pci': 22,
'cell_id': '0x22',
'ru': {
......@@ -275,11 +272,11 @@ def iRU2_LOPCOMM_fLTE3(ienb):
})
if 1:
ienb.ishared('Radio Unit 3', '_RU3', RU_0007)
ienb.ishared('Radio Unit 3', '_RU3', RU_70002)
ienb.ishared('Cell 3', '_CELL3', {
'cell_type': 'lte',
'rf_mode': 'fdd',
'dl_earfcn': 500, # 2160 MHz @ B1
'dl_earfcn': 2750, # 2620 MHz @ B7
'bandwidth': '20 MHz',
'pci': 23,
'cell_id': '0x23',
......
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