Commit 9f8e2506 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 4f92bcbc
...@@ -152,7 +152,7 @@ ...@@ -152,7 +152,7 @@
# LTE cells # LTE cells
cell_list: [ cell_list: [
{%- for i, cell in enumerate(cell_list) %} {%- for cell_ref, cell in cell_dict|dictsort %}
{%- if cell['cell_type'] == 'lte' %} {%- if cell['cell_type'] == 'lte' %}
XXX set rrh = cell.rrh + dereference if needed XXX set rrh = cell.rrh + dereference if needed
{ {
...@@ -168,8 +168,8 @@ ...@@ -168,8 +168,8 @@
{#- CA in between all LTE cells #} {#- CA in between all LTE cells #}
scell_list: [ scell_list: [
{%- for j, cell2 in enumerate(cell_list) %} {%- for cell2_ref, cell2 in cell_dict|dictsort %}
{%- if j != i and cell2['type'] == 'cell_lte' %} {%- if cell2_ref != cell_ref and cell2['type'] == 'lte' %}
{ {
cell_id: {{ cell2['cell_id'] }}, cell_id: {{ cell2['cell_id'] }},
cross_carrier_scheduling: false, cross_carrier_scheduling: false,
......
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