Commit 587fdcac authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 96264ad1
...@@ -100,6 +100,9 @@ ...@@ -100,6 +100,9 @@
{%- for rf_port, (ru_ref, ru) in enumerate(ru_dict|dictsort) %} {%- for rf_port, (ru_ref, ru) in enumerate(ru_dict|dictsort) %}
{%- do ru['.rf_port'] = rf_port %} {%- do ru['.rf_port'] = rf_port %}
{%- if ru['ru_type'] == 'sdr' %} {%- if ru['ru_type'] == 'sdr' %}
rx_antenna:"tx_rx",
tdd_tx_mod: 1,
{%- elif ru['ru_type] == 'lopcomm' XXX %} {%- elif ru['ru_type] == 'lopcomm' XXX %}
XXX XXX
{%- endif %} {%- endif %}
......
{ {
"title": "SDR board transiever", "title": "SDR transiever",
"description": XXX, "description": "Radio Unit constituted several SDR boards",
"type": "object", "type": "object",
"required": [ "required": [
"ru_type", "ru_type",
"ru_link_type",
"rf_port"
], ],
"properties": { "properties": {
"ru_type": { "ru_type": {
"const": "sdr", "const": "sdr",
"template": "sdr", "template": "sdr",
"options": { "hidden": true } "options": { "hidden": true }
}, },
"ru_link_type": {
"const": "sdr",
"template": "sdr",
"options": { "hidden": true }
},
"rf_port": {
"title": "SDR boards",
"description": "Which SDR boards to use to build up an RF port",
"type": "array",
"items": {
"title": "/dev/sdr #",
"type": "number"
}
}
} }
} }
ru_type = "sdr"
ru_link_type = "sdr"
rfport: string # e.g. sdrX + sdrY + sdrZ rfport: string # e.g. sdrX + sdrY + sdrZ
rx_antenna: auto/tx_rx, rx rx_antenna: auto/tx_rx, rx
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