Commit 1e3b0a41 authored by Kirill Smelkov's avatar Kirill Smelkov

X Restore CPRI delay defaults for Lopcomm

rx_delay is meaningful to have as the default, as that is RU-model
specific and goes as T2a+T3a-Toffset.

tx_delay is less meaningful to have as the default: it is T12 + T2a,
where T2a is RU-model specific and T12 depends on the length of the
fiber link. But I keep the previous default because it might be handy to
have something as the default.

Also restore previous values for sunwave n_antenna_* as it was there in
old ors-amarisoft SR.
parent 430d6f4a
......@@ -47,6 +47,18 @@
"const": "hw",
"enum": ["hw"],
"options": { "hidden": true }
},
"rx_delay": {
"$ref": "#/properties/cpri_link/properties/rx_delay",
"default": 25.11
},
"tx_delay": {
"$ref": "#/properties/cpri_link/properties/tx_delay",
"default": 14.71
},
"tx_dbm": {
"$ref": "#/properties/cpri_link/properties/tx_dbm",
"default": 63
}
}
},
......
......@@ -32,11 +32,11 @@
"n_antenna_dl": {
"$ref": "#/properties/n_antenna_dl",
"default": 4
"default": 2
},
"n_antenna_ul": {
"$ref": "#/properties/n_antenna_ul",
"default": 4
"default": 1
},
"cpri_link": {
"$ref": "#/properties/cpri_link",
......@@ -47,6 +47,14 @@
"const": "bf1",
"enum": ["bf1"],
"options": { "hidden": true }
},
"rx_delay": {
"$ref": "#/properties/cpri_link/properties/rx_delay",
"default": 11.0
},
"tx_dbm": {
"$ref": "#/properties/cpri_link/properties/tx_dbm",
"default": 42.0
}
}
}
......
......@@ -26,29 +26,38 @@
'ru': {
'txrx_active': 'INACTIVE',
},
'ru/cpri_link': {
'mapping': 'hw',
'mult': 16,
'rx_delay': 0,
'tx_delay': 0,
'tx_dbm': 0,
},
'ru/lopcomm': {
'n_antenna_dl': 2,
'n_antenna_ul': 2,
},
'ru/lopcomm/cpri_link': {
'mapping': 'hw',
'rx_delay': 25.11,
'tx_delay': 14.71,
'tx_dbm': 63,
},
'ru/sunwave': {
'n_antenna_dl': 4,
'n_antenna_ul': 4,
'n_antenna_dl': 2,
'n_antenna_ul': 1,
},
'ru/cpri_link': {
'mapping': 'hw',
'mult': 16,
'rx_delay': 0,
'tx_delay': 0,
'tx_dbm': 0,
'ru/sunwave/cpri_link': {
'mapping': 'bf1',
'rx_delay': 11.0,
'tx_dbm': 42.0,
},
'cell/lte': {
'inactivity_timer': 10000,
},
'cell/lte/fdd': {
},
'cell/lte/tdd': {
......
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