Commit 341f175d authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent c3af9759
...@@ -16,7 +16,7 @@ NOTE: nr cell -> ----//---- gnb_id + gnb_id_bits ...@@ -16,7 +16,7 @@ NOTE: nr cell -> ----//---- gnb_id + gnb_id_bits
"cell_type", "cell_type",
"rf_mode", "rf_mode",
"bandwidth", "bandwidth",
"tdd_ul_dl_config" if rf_mode=="TDD", "tdd_ul_dl_config" if rf_mode=="tdd",
"dl_earfcn", "dl_earfcn",
"pci", "pci",
"cell_id", "cell_id",
...@@ -46,7 +46,7 @@ NOTE: nr cell -> ----//---- gnb_id + gnb_id_bits ...@@ -46,7 +46,7 @@ NOTE: nr cell -> ----//---- gnb_id + gnb_id_bits
] ]
}, },
if rf_mode == "TDD": if rf_mode == "tdd":
"tdd_ul_dl_config": { "tdd_ul_dl_config": {
"title": "TDD", "title": "TDD",
"description": "TDD Configuration", "description": "TDD Configuration",
...@@ -86,7 +86,7 @@ NOTE: nr cell -> ----//---- gnb_id + gnb_id_bits ...@@ -86,7 +86,7 @@ NOTE: nr cell -> ----//---- gnb_id + gnb_id_bits
"cell_type", "cell_type",
"rf_mode", "rf_mode",
"bandwidth", "bandwidth",
"tdd_ul_dl_config" if rf_mode=="TDD", "tdd_ul_dl_config" if rf_mode=="tdd",
"dl_nr_arfcn", "dl_nr_arfcn",
"pci", "pci",
"cell_id", "cell_id",
...@@ -107,7 +107,7 @@ NOTE: nr cell -> ----//---- gnb_id + gnb_id_bits ...@@ -107,7 +107,7 @@ NOTE: nr cell -> ----//---- gnb_id + gnb_id_bits
"type": "number" "type": "number"
} }
if rf_mode == "TDD": if rf_mode == "tdd":
"tdd_ul_dl_config": { "tdd_ul_dl_config": {
"title": "TDD", "title": "TDD",
"description": "TDD", "description": "TDD",
...@@ -151,7 +151,7 @@ NOTE: nr cell -> ----//---- gnb_id + gnb_id_bits ...@@ -151,7 +151,7 @@ NOTE: nr cell -> ----//---- gnb_id + gnb_id_bits
"rf_mode": { "rf_mode": {
"title": "RF mode", "title": "RF mode",
"description": "Mode for TX/RX radio multiplexing: Frequency- or Time- based", "description": "Mode for TX/RX radio multiplexing: Frequency- or Time- based",
"enum": ["FDD", "TDD"] "enum": ["fdd", "tdd"]
}, },
"pci": { "pci": {
"title": "Physical Cell ID", "title": "Physical Cell ID",
......
...@@ -73,6 +73,8 @@ ...@@ -73,6 +73,8 @@
], ],
uldl_config: 2,
sp_config: 7,
n_rb_dl: 25, n_rb_dl: 25,
si_coderate: 0.2, si_coderate: 0.2,
...@@ -88,6 +90,7 @@ ...@@ -88,6 +90,7 @@
pucch_dedicated: { pucch_dedicated: {
n1_pucch_sr_count: 11, n1_pucch_sr_count: 11,
cqi_pucch_n_rb: 1, cqi_pucch_n_rb: 1,
tdd_ack_nack_feedback_mode: "multiplexing", /* TDD only */
}, },
m_ri: 8, m_ri: 8,
transmission_mode: 3, transmission_mode: 3,
...@@ -627,6 +630,8 @@ ...@@ -627,6 +630,8 @@
], ],
uldl_config: 2,
sp_config: 7,
n_rb_dl: 25, n_rb_dl: 25,
si_coderate: 0.2, si_coderate: 0.2,
...@@ -642,6 +647,7 @@ ...@@ -642,6 +647,7 @@
pucch_dedicated: { pucch_dedicated: {
n1_pucch_sr_count: 11, n1_pucch_sr_count: 11,
cqi_pucch_n_rb: 1, cqi_pucch_n_rb: 1,
tdd_ack_nack_feedback_mode: "multiplexing", /* TDD only */
}, },
m_ri: 8, m_ri: 8,
transmission_mode: 3, transmission_mode: 3,
......
...@@ -260,7 +260,7 @@ ...@@ -260,7 +260,7 @@
], ],
{# tune LTE parameters for the cell #} {# tune LTE parameters for the cell #}
{%- set tdd = (cell['rf_mode'] == 'TDD') %} {%- set tdd = (cell['rf_mode'] == 'tdd') %}
{%- if tdd %} {%- if tdd %}
uldl_config: {{ lte.cell_tdd_config(cell) }}, uldl_config: {{ lte.cell_tdd_config(cell) }},
sp_config: 7, sp_config: 7,
......
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