Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos
Commits
6c4964f2
Commit
6c4964f2
authored
Sep 12, 2023
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
7d27f4f8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
7 deletions
+30
-7
software/ors-amarisoft/cell/input-schema.json
software/ors-amarisoft/cell/input-schema.json
+6
-0
software/ors-amarisoft/config/enb.cfg
software/ors-amarisoft/config/enb.cfg
+20
-5
software/ors-amarisoft/config/enb.jinja2.cfg
software/ors-amarisoft/config/enb.jinja2.cfg
+4
-2
No files found.
software/ors-amarisoft/cell/input-schema.json
View file @
6c4964f2
...
...
@@ -42,6 +42,12 @@
"type"
:
"string"
,
"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"
:
{
"title"
:
"Radio Unit"
,
"oneOf"
:
[
...
...
software/ors-amarisoft/config/enb.cfg
View file @
6c4964f2
...
...
@@ -20,8 +20,6 @@
tx_gain: 50,
rx_gain: 50,
com_addr: "127.0.1.2:9001",
mme_list: [
...
...
@@ -610,7 +608,7 @@
tac: 0x0001,
n_id_cell: 2,
dl_earfcn: 38100,
root_sequence_index: 20
4
,
root_sequence_index: 20
5
,
scell_list: [
{
cell_id: 0x01, // CELL1_a
...
...
@@ -1170,7 +1168,7 @@
tac: 0x0001,
n_id_cell: 21,
dl_earfcn: 3350,
root_sequence_index: 20
4
,
root_sequence_index: 20
6
,
scell_list: [
{
cell_id: 0x01, // CELL1_a
...
...
@@ -1726,7 +1724,7 @@
tac: 0x0001,
n_id_cell: 22,
dl_earfcn: 3410,
root_sequence_index: 20
4
,
root_sequence_index: 20
7
,
scell_list: [
{
cell_id: 0x01, // CELL1_a
...
...
@@ -2351,6 +2349,23 @@
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)
...
...
software/ors-amarisoft/config/enb.jinja2.cfg
View file @
6c4964f2
...
...
@@ -266,7 +266,7 @@
// LTE cells
cell_list: [
{%- for
cell_ref, icell in icell_dict|dictsort
%}
{%- for
i, (cell_ref, icell) in enumerate(icell_dict|dictsort)
%}
{% set cell = icell['_'] %}
{%- if cell['cell_type'] == 'lte' %}
{%- set ru_ref = J(jcell_ru_ref(icell)) %}
...
...
@@ -282,7 +282,9 @@
tac: {{ cell['tac'] }},
n_id_cell: {{ cell['pci'] }},
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 #}
scell_list: [
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment