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

.

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