Commit d73d47d9 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 2f6b03e0
......@@ -16,6 +16,7 @@
{%- do slaplte.check_loaded_everything() %}
{%- endif %}
{#- 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_nr = len(list(icell_dict|dictsort | selectattr('1._.cell_type', '==', 'nr'))) > 0 %}
......@@ -26,7 +27,7 @@
ncell_list: [
// Intra-ENB HO
{%- for cell2_ref, icell2 in icell_dict|dictsort %}
{%- set cell2 = icell2['_'] %}
{%- set cell2 = icell2['_'] %}
{%- if cell2_ref != cell_ref %} {#- NOTE: HO to both LTE and NR #}
{
{%- if cell2.cell_type == 'lte' %}
......@@ -39,7 +40,7 @@
rat: "nr",
cell_id: {{ cell2.cell_id }}, // -> {{ cell2_ref }}
{%- else %}
{%- do bug('unreachable') %}
{%- do bug('unreachable') %}
{%- endif %}
},
{%- endif %}
......@@ -77,7 +78,6 @@
{%- endif %}
},
{%- endfor %}
],
{%- endmacro %}
......
......@@ -96,7 +96,6 @@
ssb_offset: 0,
ssb_duration: 1,
},
],
// Carrier Aggregation: LTE + LTE
......@@ -299,7 +298,6 @@
ssb_offset: 0,
ssb_duration: 1,
},
],
// Carrier Aggregation: NR + NR
......
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