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

.

parent 346d80ed
...@@ -17,4 +17,3 @@ Lopcomm: ...@@ -17,4 +17,3 @@ Lopcomm:
M2RU: M2RU:
mapping: bf1 mapping: bf1
...@@ -55,21 +55,22 @@ ...@@ -55,21 +55,22 @@
"required": [ "required": [
"sdr_dev", "sdr_dev",
"sfp_port", "sfp_port",
"mult", "mapping"
"mapping",
"rx_delay",
"tx_delay",
"tx_dbm"
], ],
"properties": { "properties": {
"sdr_dev": { "sdr_dev": {
"title": "SDR/CPRI board #", "title": "/dev/sdr # of CPRI board",
"type": "integer" "type": "integer"
}, },
"sfp_port": { "sfp_port": {
"title": "SFP port # on the SDR/CPRI board", "title": "SFP port # on the CPRI board",
"type": "integer" "type": "integer"
}, },
"mapping": {
"title": "Mapping method of AxCs on the CPRI",
"type": "string",
"enum": ["standard", "hw", "spread", "bf1"]
},
"mult": { "mult": {
"title": "CPRI line bit rate multipler", "title": "CPRI line bit rate multipler",
"description": "Select the CPRI line bit rate in terms of multiple of option 1 (614.4 Mbps). E.g set 4 for option 3, 8 for option 5 and 16 for option 7", "description": "Select the CPRI line bit rate in terms of multiple of option 1 (614.4 Mbps). E.g set 4 for option 3, 8 for option 5 and 16 for option 7",
......
...@@ -29,6 +29,17 @@ ...@@ -29,6 +29,17 @@
"n_antenna_dl": { "default": 2 }, "n_antenna_dl": { "default": 2 },
"n_antenna_ul": { "default": 2 }, "n_antenna_ul": { "default": 2 },
"cpri_link": {
"type": "object",
"properties": {
"mapping": {
"const": "hw",
"template": "hw",
"options": { "hidden": true }
}
}
},
"mac_addr": { "mac_addr": {
"title": "RU MAC address", "title": "RU MAC address",
"description": "RU MAC address used for DNSMASQ", "description": "RU MAC address used for DNSMASQ",
......
...@@ -19,6 +19,17 @@ ...@@ -19,6 +19,17 @@
}, },
"n_antenna_dl": { "default": 4 }, "n_antenna_dl": { "default": 4 },
"n_antenna_ul": { "default": 4 } "n_antenna_ul": { "default": 4 },
"cpri_link": {
"type": "object",
"properties": {
"mapping": {
"const": "bf1",
"template": "bf1",
"options": { "hidden": true }
}
}
}
} }
} }
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