Commit ef7d98ce authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 05d4f20c
...@@ -304,7 +304,7 @@ ...@@ -304,7 +304,7 @@
gnb_id_bits: {{ cfg('gnb_id_bits') }}, gnb_id_bits: {{ cfg('gnb_id_bits') }},
en_dc_support: true, en_dc_support: true,
// LTE cells // LTE cells XXX ru['xxx'] -> ru.xxx
cell_list: [ cell_list: [
{%- for i, (cell_ref, icell) in enumerate(icell_dict|dictsort) %} {%- for i, (cell_ref, icell) in enumerate(icell_dict|dictsort) %}
{%- set cell = icell['_'] %} {%- set cell = icell['_'] %}
...@@ -790,29 +790,29 @@ ...@@ -790,29 +790,29 @@
nzp_csi_rs_resource: [ nzp_csi_rs_resource: [
{ {
csi_rs_id: 0, csi_rs_id: 0,
#if N_ANTENNA_DL == 1 {%- if ru.n_antenna_dl == 1 %}
n_ports: 1, n_ports: 1,
frequency_domain_allocation: "row2", frequency_domain_allocation: "row2",
bitmap: "100000000000", bitmap: "100000000000",
cdm_type: "no_cdm", cdm_type: "no_cdm",
#elif N_ANTENNA_DL == 2 {%- elif ru.n_antenna_dl == 2 %}
n_ports: 2, n_ports: 2,
frequency_domain_allocation: "other", frequency_domain_allocation: "other",
bitmap: "100000", bitmap: "100000",
cdm_type: "fd_cdm2", cdm_type: "fd_cdm2",
#elif N_ANTENNA_DL == 4 {%- elif ru.n_antenna_dl == 4 %}
n_ports: 4, n_ports: 4,
frequency_domain_allocation: "row4", frequency_domain_allocation: "row4",
bitmap: "100", bitmap: "100",
cdm_type: "fd_cdm2", cdm_type: "fd_cdm2",
#elif N_ANTENNA_DL == 8 {%- elif ru.n_antenna_dl == 8 %}
n_ports: 8, n_ports: 8,
frequency_domain_allocation: "other", frequency_domain_allocation: "other",
bitmap: "110011", bitmap: "110011",
cdm_type: "fd_cdm2", cdm_type: "fd_cdm2",
#else {%- else %}
#error unsupported number of DL antennas {%- do error(icell, "unsupported number of DL antennas") %}
#endif {%- endif %}
density: 1, density: 1,
first_symb: 4, first_symb: 4,
rb_start: 0, rb_start: 0,
......
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