Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
107
Merge Requests
107
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
slapos
Commits
57ade8ff
Commit
57ade8ff
authored
Oct 18, 2023
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
2d2a9b21
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
56 additions
and
56 deletions
+56
-56
software/ors-amarisoft/amari/slap.jinja2
software/ors-amarisoft/amari/slap.jinja2
+50
-50
software/ors-amarisoft/buildout.hash.cfg
software/ors-amarisoft/buildout.hash.cfg
+2
-2
software/ors-amarisoft/ru/lopcomm/cu_config.jinja2.xml
software/ors-amarisoft/ru/lopcomm/cu_config.jinja2.xml
+4
-4
No files found.
software/ors-amarisoft/amari/slap.jinja2
View file @
57ade8ff
...
...
@@ -45,18 +45,18 @@
}
%}
{%- macro default_ul_earfcn(dl_earfcn) %}
{{- earfcn_module.dl2ul(dl_earfcn) }}
{%- macro
j
default_ul_earfcn(dl_earfcn) %}
{{- earfcn_module.dl2ul(dl_earfcn)
| tojson
}}
{%- endmacro %}
{%- macro
default_ul_nr_arfcn(dl_nr_arfcn, nr_band)
%}
{%- macro
jdefault_ul_nr_arfcn(dl_nr_arfcn, nr_band)
%}
{%- set nr = nrarfcn_module %}
{%- set dl_lo, dl_hi = nr.get_nrarfcn_range(nr_band, 'dl') %}
{%- set ul_lo, ul_hi = nr.get_nrarfcn_range(nr_band, 'ul') %}
{{-
ul_lo + (dl_nr_arfcn - dl_lo)
}}
{{-
(ul_lo + (dl_nr_arfcn - dl_lo)) | tojson
}}
{%- endmacro %}
{%- macro default_ssb_nr_arfcn(dl_nr_arfcn) %}
{%- macro
j
default_ssb_nr_arfcn(dl_nr_arfcn) %}
{#- NOTE: computations rechecked wrt https://tech-academy.amarisoft.com/OutOfBox_UEsim_SA.html#Tips_SSB_Frequency #}
{%- set nr = nrarfcn_module %}
{%- set f = nr.get_frequency(nrarfcn=dl_nr_arfcn) %}
...
...
@@ -66,7 +66,7 @@
{%- endif %}
{%- set fg = nr.get_frequency_by_gscn(gscn) %}
{%- set fg_arfcn = nr.get_nrarfcn(fg) %}
{{- fg_arfcn }}
{{- fg_arfcn
| tojson
}}
{%- endmacro %}
...
...
@@ -139,55 +139,55 @@
XXX defaults ?
#}
{%- macro load_iru_and_icell(iru_dict, icell_dict, icell_kind) %}
{%- set qother = [] %}
{%- for ishared in qshared_instance_list %}
{%- set ref = J(jref_of_shared(ishared)) %}
{%- set _ = ishared['_'] %}
{%- if 'ru_type' in _ %}
{%- set iru = ishared %}
{%- if _.ru_link_type == 'cpri' %}
{%- set link = _.cpri_link %}
{%- for k, v in defaults['cpri_link'].items() %}
{%- do link.setdefault(k, v) %}
{%- endfor %}
{%- endif %}
{%- do iru_dict.update({ref: iru}) %}
{%- macro load_iru_and_icell(iru_dict, icell_dict, icell_kind)
%}
{%- set qother = []
%}
{%- for ishared in qshared_instance_list
%}
{%- set ref = J(jref_of_shared(ishared))
%}
{%- set _ = ishared['_']
%}
{%- if 'ru_type' in _
%}
{%- set iru = ishared
%}
{%- if _.ru_link_type == 'cpri'
%}
{%- set link = _.cpri_link
%}
{%- for k, v in defaults['cpri_link'].items()
%}
{%- do link.setdefault(k, v)
%}
{%- endfor
%}
{%- endif
%}
{%- do iru_dict.update({ref: iru})
%}
{%- elif (icell_kind == 'enb' and 'cell_type' in _) or
(icell_kind == 'ue' and 'ue_cell_type' in _) %}
{%- set icell = ishared %}
{%- if icell_kind == 'enb' %}
{%- for k, v in defaults['cell/' + _.cell_type].items() %}
{%- do _.setdefault(k, v) %}
{%- endfor %}
{%- set xcell_type = _.cell_type %}
{%- else %}
{%- set xcell_type = _.ue_cell_type %}
{%- endif %}
{%- if xcell_type == 'lte' %}
{%- do _.setdefault('ul_earfcn',
default_ul_earfcn(_.dl_earfcn
)) %}
{%- elif xcell_type == 'nr' %}
{%- do _.setdefault('ul_nr_arfcn',
default_ul_nr_arfcn(_.dl_nr_arfcn, _.nr_band
)) %}
{%- do _.setdefault('ssb_nr_arfcn',
default_ssb_nr_arfcn(_.dl_nr_arfcn
)) %}
{%- else %}
{%- do bug('unreachable') %}
{%- endif %}
{%- do icell_dict.update({ref: icell}) %}
{%- set ru = _['ru'] %}
{%- if ru.ru_type not in ('ru_ref', 'ruincell_ref') %}
{#- embedded ru definition -> expose it as `_<cell_ref>_ru` #}
(icell_kind == 'ue' and 'ue_cell_type' in _)
%}
{%- set icell = ishared
%}
{%- if icell_kind == 'enb'
%}
{%- for k, v in defaults['cell/' + _.cell_type].items()
%}
{%- do _.setdefault(k, v)
%}
{%- endfor
%}
{%- set xcell_type = _.cell_type
%}
{%- else
%}
{%- set xcell_type = _.ue_cell_type
%}
{%- endif
%}
{%- if xcell_type == 'lte'
%}
{%- do _.setdefault('ul_earfcn',
J(jdefault_ul_earfcn(_.dl_earfcn)
)) %}
{%- elif xcell_type == 'nr'
%}
{%- do _.setdefault('ul_nr_arfcn',
J(jdefault_ul_nr_arfcn(_.dl_nr_arfcn, _.nr_band)
)) %}
{%- do _.setdefault('ssb_nr_arfcn',
J(jdefault_ssb_nr_arfcn(_.dl_nr_arfcn)
)) %}
{%- else
%}
{%- do bug('unreachable')
%}
{%- endif
%}
{%- do icell_dict.update({ref: icell})
%}
{%- set ru = _['ru']
%}
{%- if ru.ru_type not in ('ru_ref', 'ruincell_ref')
%}
{#- embedded ru definition -> expose it as `_<cell_ref>_ru`
#}
{%- do iru_dict.update({'_%s_ru' % ref: {
'_': ru,
'slave_title': '%s. RU' % icell.slave_title,
'slave_reference': icell.slave_reference,
}}) %}
{%- endif %}
{%- else %}
{%- do qother.append(ishared) %}
{%- endif %}
{%- endfor %}
{%- do qshared_instance_list.clear() %}
{%- do qshared_instance_list.extend(qother) %}
}})
%}
{%- endif
%}
{%- else
%}
{%- do qother.append(ishared)
%}
{%- endif
%}
{%- endfor
%}
{%- do qshared_instance_list.clear()
%}
{%- do qshared_instance_list.extend(qother)
%}
{#- do print('\n>>> iru_dict:'), pprint(iru_dict) #}
{#- do print('\n>>> icell_dict:'), pprint(icell_dict) #}
...
...
software/ors-amarisoft/buildout.hash.cfg
View file @
57ade8ff
...
...
@@ -24,7 +24,7 @@ md5sum = bcb9011d930de644827ec9c713837d71
[amari_slap.jinja2]
_update_hash_filename_ = amari/slap.jinja2
md5sum =
c30fa5e9843212f94ae595d8394ac6b8
md5sum =
4120fe398197ef49922bcfbc0e2116c6
[ru_libinstance.jinja2.cfg]
_update_hash_filename_ = ru/libinstance.jinja2.cfg
...
...
@@ -140,7 +140,7 @@ md5sum = e435990eb0a0d4be41efa9bd16dce09b
[ru_lopcomm_cu_config.jinja2.xml]
_update_hash_filename_ = ru/lopcomm/cu_config.jinja2.xml
md5sum =
c9ba974fd94ffacd8d72144c950fdf9a
md5sum =
3589be1efdfa9c2ebb26c6dcd07c0e02
[software.cfg.html]
_update_hash_filename_ = gadget/software.cfg.html
...
...
software/ors-amarisoft/ru/lopcomm/cu_config.jinja2.xml
View file @
57ade8ff
...
...
@@ -92,14 +92,14 @@
{%- if cell.cell_type == 'lte' %}
{%- set dl_arfcn = cell.dl_earfcn %}
{%- set ul_arfcn = cell.ul_earfcn %}
{%- set dl_freq =
earfcn_module.frequency(dl_arfcn) * 1e6
%}
{%- set ul_freq =
earfcn_module.frequency(ul_arfcn) * 1e6
%}
{%- set dl_freq =
int(earfcn_module.frequency(dl_arfcn) * 1e6)
%}
{%- set ul_freq =
int(earfcn_module.frequency(ul_arfcn) * 1e6)
%}
{%- set bw = int(float(cell.bandwidth.removesuffix(' MHz')) * 1e6) %}
{%- elif cell.cell_type == 'nr' %}
{%- set dl_arfcn = cell.dl_nr_arfcn %}
{%- set ul_arfcn = cell.ul_nr_arfcn %}
{%- set dl_freq =
nrarfcn_module.get_frequency(dl_arfcn) * 1e6
%}
{%- set ul_freq =
nrarfcn_module.get_frequency(ul_arfcn) * 1e6
%}
{%- set dl_freq =
int(nrarfcn_module.get_frequency(dl_arfcn) * 1e6)
%}
{%- set ul_freq =
int(nrarfcn_module.get_frequency(ul_arfcn) * 1e6)
%}
{%- set bw = int(cell.bandwidth * 1e6) %}
{%- else %}
{%- do bug('unreachable') %}
...
...
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