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
9f6fd46d
Commit
9f6fd46d
authored
Aug 23, 2023
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
d9e9c31d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
13 deletions
+8
-13
software/ors-amarisoft/config/enb.cfg
software/ors-amarisoft/config/enb.cfg
+0
-5
software/ors-amarisoft/config/enb.jinja2.cfg
software/ors-amarisoft/config/enb.jinja2.cfg
+1
-1
software/ors-amarisoft/config/lte.jinja2
software/ors-amarisoft/config/lte.jinja2
+7
-7
No files found.
software/ors-amarisoft/config/enb.cfg
View file @
9f6fd46d
...
...
@@ -12,11 +12,6 @@
{
log_options: "all.level=error,all.max_size=0,nas.level=debug,nas.max_size=1,s1ap.level=debug,s1ap.max_size=1,x2ap.level=debug,x2ap.max_size=1,rrc.level=debug,rrc.max_size=1,phy.level=info,file.rotate=1G,file.path=/dev/null",
...
...
software/ors-amarisoft/config/enb.jinja2.cfg
View file @
9f6fd46d
...
...
@@ -6,7 +6,7 @@
{# XXX macro return json -> start from j #}
{%- set J = json_module.loads %}
{#
XXX error(slave, msg)
#}
{#
- XXX error(slave, msg) -
#}
{# cell_dict keeps cell slave instances: reference -> cell #}
...
...
software/ors-amarisoft/config/lte.jinja2
View file @
9f6fd46d
{#- Package lte provides helpers for configuring LTE cells. -#}
{#- cell_tdd_config returns tdd_config for an LTE cell.
-
#}
{%- macro cell_tdd_config(cell)
-
%}
{#- cell_tdd_config returns tdd_config for an LTE cell. #}
{%- macro cell_tdd_config(cell) %}
{%- set _ = {'[Configuration 2] 5ms 2UL 6DL (default)': 2,
'[Configuration 6] 5ms 5UL 3DL (maximum uplink)': 6} %}
{{ _[cell.get('tdd_ul_dl_config', '[Configuration 2] 5ms 2UL 6DL (default)')] }}
{%- endmacro %}
{%- endmacro
-
%}
{# cell_n_rb_dl returns n_rb_dl for an LTE cell. #}
{#
-
cell_n_rb_dl returns n_rb_dl for an LTE cell. #}
{%- macro cell_n_rb_dl(cell) %}
{%- set _ = {'1.4 MHz': 6,
'3 MHz': 15,
...
...
@@ -16,10 +16,10 @@
'15 MHz': 75,
'20 MHz': 100} %}
{{ _[cell['bandwidth']] }}
{%- endmacro %}
{%- endmacro
-
%}
{# cell_drb_config returns drb_config section for an LTE cell.
{#
-
cell_drb_config returns drb_config section for an LTE cell.
DRB configuration varies in beteen FDD and TDD modes. #}
{%- macro cell_drb_config(cell) %}
{%- if cell['rf_mode'] == 'tdd' %}
...
...
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