Commit 70e23e6d authored by Kirill Smelkov's avatar Kirill Smelkov

software/ors-amarisoft: enb: lte: Fix tdd_ul_dl_config default in schema

For LTE tdd_ul_dl_config is

    enum [
         "[Configuration 2] 5ms 2UL 6DL (default)",
         "[Configuration 6] 5ms 5UL 3DL (maximum uplink)"
    ],

but default was outside of that enum. The code in enb.jinja2.cfg actually uses
the first option from the enum as the default.

-> Fix default in schema.

tdd_ul_dl_config in NR seems to be already correct.
parent 2c9525cb
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
"[Configuration 2] 5ms 2UL 6DL (default)", "[Configuration 2] 5ms 2UL 6DL (default)",
"[Configuration 6] 5ms 5UL 3DL (maximum uplink)" "[Configuration 6] 5ms 5UL 3DL (maximum uplink)"
], ],
"default": "5ms 2UL 7DL 4/6 (default)" "default": "[Configuration 2] 5ms 2UL 6DL (default)"
}, },
{%- endif %} {%- endif %}
{%- if bbu != 'ors' %} {%- if bbu != 'ors' %}
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
"[Configuration 2] 5ms 2UL 6DL (default)", "[Configuration 2] 5ms 2UL 6DL (default)",
"[Configuration 6] 5ms 5UL 3DL (maximum uplink)" "[Configuration 6] 5ms 5UL 3DL (maximum uplink)"
], ],
"default": "5ms 2UL 7DL 4/6 (default)" "default": "[Configuration 2] 5ms 2UL 6DL (default)"
}, },
"sdr_number": { "sdr_number": {
"title": "SDR Number", "title": "SDR Number",
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
"[Configuration 2] 5ms 2UL 6DL (default)", "[Configuration 2] 5ms 2UL 6DL (default)",
"[Configuration 6] 5ms 5UL 3DL (maximum uplink)" "[Configuration 6] 5ms 5UL 3DL (maximum uplink)"
], ],
"default": "5ms 2UL 7DL 4/6 (default)" "default": "[Configuration 2] 5ms 2UL 6DL (default)"
}, },
"sdr_number": { "sdr_number": {
"title": "SDR Number", "title": "SDR Number",
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
"[Configuration 2] 5ms 2UL 6DL (default)", "[Configuration 2] 5ms 2UL 6DL (default)",
"[Configuration 6] 5ms 5UL 3DL (maximum uplink)" "[Configuration 6] 5ms 5UL 3DL (maximum uplink)"
], ],
"default": "5ms 2UL 7DL 4/6 (default)" "default": "[Configuration 2] 5ms 2UL 6DL (default)"
}, },
"dl_earfcn": { "dl_earfcn": {
"title": "DL EARFCN", "title": "DL EARFCN",
......
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