Commit d73d47d9 authored by Kirill Smelkov's avatar Kirill Smelkov

.

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