Commit d9ce250a authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 66222bc9
......@@ -88,7 +88,7 @@ md5sum = e71b1d10676e5ffa5dc96db88d6f5bae
[template-ors-enb]
_update_hash_filename_ = instance-ors-enb.jinja2.cfg
md5sum = 23876db38cff30d68951c942b2cb4f5a
md5sum = 8b8ef94c35e99a0754fa8b8635bc5221
[template-ors-gnb]
_update_hash_filename_ = instance-ors-gnb.jinja2.cfg
......
......@@ -4,6 +4,7 @@
"n_antenna_dl": 2,
"n_antenna_ul": 2,
"rf_mode": "tdd",
"tdd_ul_dl_config": "5ms 2UL 7DL 4/6 (default)",
"pci": 1,
"cell_id": "0x01",
"tac": "0x0001",
......@@ -45,19 +46,19 @@
'slave_title': '%s_CELL' % 'XXX',
'_': {
'cell_type': 'lte',
'rf_mode': 'XXX',
'pci': 'XXX',
'cell_id': 'XXX',
'root_sequence_index': 'XXX',
'rf_mode': slapparameter_dict.get('rf_mode', ors_defaults.rf_mode),
'pci': slapparameter_dict.get('pci', ors_defaults.pci),
'cell_id': slapparameter_dict.get('cell_id', ors_defaults.cell_id),
'root_sequence_index': slapparameter_dict.get('root_sequence_index', ors_defaults.root_sequence_index),
'ru': {
'ru_type': 'ru_ref',
'ru_ref': 'RU',
},
'tdd_ul_dl_config': 'XXX',
'bandwidth': 'XXX',
'dl_earfcn': 'XXX',
'tac': 'XXX',
'tdd_ul_dl_config': slapparameter_dict('tdd_ul_dl_config', ors_defaults.tdd_ul_dl_config),
'bandwidth': slapparameter_dict.get('bandwidth', ors_defaults.bandwidth),
'dl_earfcn': slapparameter_dict.get('dl_earfcn', ors_defaults.dl_earfcn),
'tac': slapparameter_dict.get('tac', ors_defaults.tac)
} |tojson
})
%}
......
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