Commit 6c4964f2 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 7d27f4f8
...@@ -42,6 +42,12 @@ ...@@ -42,6 +42,12 @@
"type": "string", "type": "string",
"default": "0x01" "default": "0x01"
}, },
"root_sequence_index": {
"title": "Root Sequence Index",
"description": "Range: 0 to 837. Set the PRACH root sequence index (SIB2.rootSequenceIndex field). It must be different for each neighbour cell operating on the same frequency and sharing the same PRACH configuration.",
"type": "integer",
"default": 204
},
"ru": { "ru": {
"title": "Radio Unit", "title": "Radio Unit",
"oneOf": [ "oneOf": [
......
...@@ -20,8 +20,6 @@ ...@@ -20,8 +20,6 @@
tx_gain: 50, tx_gain: 50,
rx_gain: 50, rx_gain: 50,
com_addr: "127.0.1.2:9001", com_addr: "127.0.1.2:9001",
mme_list: [ mme_list: [
...@@ -610,7 +608,7 @@ ...@@ -610,7 +608,7 @@
tac: 0x0001, tac: 0x0001,
n_id_cell: 2, n_id_cell: 2,
dl_earfcn: 38100, dl_earfcn: 38100,
root_sequence_index: 204, root_sequence_index: 205,
scell_list: [ scell_list: [
{ {
cell_id: 0x01, // CELL1_a cell_id: 0x01, // CELL1_a
...@@ -1170,7 +1168,7 @@ ...@@ -1170,7 +1168,7 @@
tac: 0x0001, tac: 0x0001,
n_id_cell: 21, n_id_cell: 21,
dl_earfcn: 3350, dl_earfcn: 3350,
root_sequence_index: 204, root_sequence_index: 206,
scell_list: [ scell_list: [
{ {
cell_id: 0x01, // CELL1_a cell_id: 0x01, // CELL1_a
...@@ -1726,7 +1724,7 @@ ...@@ -1726,7 +1724,7 @@
tac: 0x0001, tac: 0x0001,
n_id_cell: 22, n_id_cell: 22,
dl_earfcn: 3410, dl_earfcn: 3410,
root_sequence_index: 204, root_sequence_index: 207,
scell_list: [ scell_list: [
{ {
cell_id: 0x01, // CELL1_a cell_id: 0x01, // CELL1_a
...@@ -2351,6 +2349,23 @@ ...@@ -2351,6 +2349,23 @@
t_PollRetransmit: 60, t_PollRetransmit: 60,
} }
], ],
meas_config_desc: {
a1_report_type: "rsrp",
a1_rsrp: -70,
a1_hysteresis: 0,
a1_time_to_trigger: 640,
a2_report_type: "rsrp",
a2_rsrp: -80,
a2_hysteresis: 0,
a2_time_to_trigger: 640,
a3_report_type: "rsrp",
a3_offset: 6,
a3_hysteresis: 0,
a3_time_to_trigger: 480,
},
meas_gap_config: "gp0",
ho_from_meas: true,
}, },
// NR cells (TODO) // NR cells (TODO)
......
...@@ -266,7 +266,7 @@ ...@@ -266,7 +266,7 @@
// LTE cells // LTE cells
cell_list: [ cell_list: [
{%- for cell_ref, icell in icell_dict|dictsort %} {%- for i, (cell_ref, icell) in enumerate(icell_dict|dictsort) %}
{% set cell = icell['_'] %} {% set cell = icell['_'] %}
{%- if cell['cell_type'] == 'lte' %} {%- if cell['cell_type'] == 'lte' %}
{%- set ru_ref = J(jcell_ru_ref(icell)) %} {%- set ru_ref = J(jcell_ru_ref(icell)) %}
...@@ -282,7 +282,9 @@ ...@@ -282,7 +282,9 @@
tac: {{ cell['tac'] }}, tac: {{ cell['tac'] }},
n_id_cell: {{ cell['pci'] }}, n_id_cell: {{ cell['pci'] }},
dl_earfcn: {{ cell['dl_earfcn'] }}, dl_earfcn: {{ cell['dl_earfcn'] }},
root_sequence_index: 204, root_sequence_index: {{ cell.get('root_sequence_index',
slapparameter_dict.get('root_sequence_index',
204 + i)) }},
{#- CA in between all LTE cells #} {#- CA in between all LTE cells #}
scell_list: [ scell_list: [
......
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