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
6fa87d78
Commit
6fa87d78
authored
1 year ago
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
a4201e85
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
3 deletions
+17
-3
software/ors-amarisoft/config/enb.jinja2.cfg
software/ors-amarisoft/config/enb.jinja2.cfg
+17
-3
No files found.
software/ors-amarisoft/config/enb.jinja2.cfg
View file @
6fa87d78
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
{%- do slaplte.check_loaded_everything() %}
{%- do slaplte.check_loaded_everything() %}
{%- endif %}
{%- endif %}
{#- do
we have LTE cells and/or NR cells ?
#}
{#- do
_lte/do_nr indicate whether we have LTE and/or NR cells
#}
{%- set do_lte = len(list(icell_dict|dictsort | selectattr('1._.cell_type', '==', 'lte'))) > 0 %}
{%- set do_lte = len(list(icell_dict|dictsort | selectattr('1._.cell_type', '==', 'lte'))) > 0 %}
{%- set do_nr = len(list(icell_dict|dictsort | selectattr('1._.cell_type', '==', 'nr'))) > 0 %}
{%- set do_nr = len(list(icell_dict|dictsort | selectattr('1._.cell_type', '==', 'nr'))) > 0 %}
...
@@ -186,8 +186,7 @@
...
@@ -186,8 +186,7 @@
],
],
// Carrier Aggregation
// Carrier Aggregation in between all LTE cells
{#- CA in between all LTE cells #} // XXX + CA LTE-NR
scell_list: [
scell_list: [
{%- for cell2_ref, icell2 in icell_dict|dictsort %}
{%- for cell2_ref, icell2 in icell_dict|dictsort %}
{%- set cell2 = icell2['_'] %}
{%- set cell2 = icell2['_'] %}
...
@@ -200,6 +199,21 @@
...
@@ -200,6 +199,21 @@
{%- endfor %}
{%- endfor %}
],
],
{%- if do_nr %}
// Carrier Aggregation: LTE + all NR cells
en_dc_scg_cell_list: [
{%- for cell2_ref, icell2 in icell_dict|dictsort %}
{%- set cell2 = icell2['_'] %}
{%- if cell2_ref != cell_ref and cell2.cell_type == 'nr' %}
{
cell_id: {{ cell2.cell_id }}, // + {{ cell2_ref }}
},
{%- endif %}
{%- endfor %}
],
// XXX nr_p_max_eutra = ? (needed ?)
{%- endif %}
// tune LTE parameters for the cell
// tune LTE parameters for the cell
{%- set tdd = (cell.rf_mode == 'tdd') %}
{%- set tdd = (cell.rf_mode == 'tdd') %}
...
...
This diff is collapsed.
Click to expand it.
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