Commit a6e3d92b authored by Kirill Smelkov's avatar Kirill Smelkov

X meas_config is TODO for generic

parent fec06011
{
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"title": "Input Parameters",
"properties": {
"nr_handover_a3_offset": {
"title": "A3 offset for NR handover",
"description": "RSRP gain offset between gNBs which will trigger handover",
"type": "number",
"default": 6
},
"nr_handover_time_to_trigger": {
"title": "Time to Trigger for NR handover",
"description": "Time to trigger after which NR handover will be triggered if A3 offset is reached",
"type": "number",
"enum": [
0,
40,
64,
80,
100,
128,
160,
256,
320,
480,
512,
640,
1024,
1280,
2560,
5120
],
"default": 100
}
}
}
......@@ -412,6 +412,7 @@
}
],
{# TODO fully expose lte meas_config_desc in generic #}
meas_config_desc: {
a1_report_type: "rsrp",
a1_rsrp: -70,
......@@ -931,6 +932,7 @@
cipher_algo_pref: [],
integ_algo_pref: [2, 1],
{# TODO fully expose nr meas_config_desc in generic #}
meas_config_desc: {
a1_report_type: "rsrp",
a1_rsrp: -60,
......
......@@ -224,6 +224,7 @@
}
],
meas_config_desc: {
a1_report_type: "rsrp",
a1_rsrp: -70,
......@@ -647,6 +648,7 @@
cipher_algo_pref: [],
integ_algo_pref: [2, 1],
meas_config_desc: {
a1_report_type: "rsrp",
a1_rsrp: -60,
......
......@@ -146,36 +146,6 @@
"type": "object",
"default": {}
},
"lte_handover_a3_offset": {
"title": "A3 offset for LTE handover",
"description": "RSRP gain offset between gNBs which will trigger handover",
"type": "number",
"default": 6
},
"lte_handover_time_to_trigger": {
"title": "Time to Trigger for LTE handover",
"description": "Time to trigger after which LTE handover will be triggered if A3 offset is reached",
"type": "number",
"enum": [
0,
40,
64,
80,
100,
128,
160,
256,
320,
480,
512,
640,
1024,
1280,
2560,
5120
],
"default": 480
},
"websocket_password": {
"title": "Websocket password",
"description": "Activates websocket for remote control and sets password",
......
......@@ -19,8 +19,6 @@
"enb_id": "0x1A2D0",
"mme_list": {'1': {'mme_addr': '127.0.1.100'}},
"plmn_list": {"1": {'plmn': '00101'}},
"lte_handover_a3_offset": 6,
"lte_handover_a3_time_to_trigger": 480,
"ncell_list": {},
"x2_peers": {},
"inactivity_timer": 10000,
......@@ -39,8 +37,6 @@
"gnb_id_bits": 28,
"amf_list": {'1': {'amf_addr': '127.0.1.100'}},
"plmn_list": {'1': {'plmn': '00101', 'tac': 100}},
"nr_handover_a3_offset": 6,
"nr_handover_time_to_trigger": 100,
"ncell_list": {},
"xn_peers": {},
"inactivity_timer": 10000,
......
software-ors.cfg
\ No newline at end of file
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