aboutsummaryrefslogtreecommitdiffstats
path: root/example
diff options
context:
space:
mode:
authorAndre Puschmann <andre@softwareradiosystems.com>2020-04-07 14:38:27 +0200
committerAndre Puschmann <andre@softwareradiosystems.com>2020-04-07 17:23:37 +0200
commita7f19836584897246fe4fe8086aabc95cdcaeafe (patch)
tree673f47b10bb80e16c0950d1ce27324b07a1d0046 /example
parent9a5be2c8fd749ae1a2ab2b949f6c8a1753d9e4b3 (diff)
enb: add measurement modifier to scenario files
this commit adds basic support for configuring measurements in the eNB config. It currently support A1, A2, and A3 events. By default UE measurements are turned off and need to be enabled by configuring an event with: +mod-enb-meas-event@{name},{report_type},{value},{hysterisis},{time to trigger} For example one can update the a2 and a3 event with: +mod-enb-meas-event@a2,rsrq,-40,2,480+mod-enb-meas-event@a3,rsrp,6,1,512 Change-Id: Ia7657be2396886840570bc41645450a268b4cfff
Diffstat (limited to 'example')
-rw-r--r--example/defaults.conf13
-rw-r--r--example/scenarios/mod-enb-meas-event@.conf7
2 files changed, 20 insertions, 0 deletions
diff --git a/example/defaults.conf b/example/defaults.conf
index 5cda132..f3994bb 100644
--- a/example/defaults.conf
+++ b/example/defaults.conf
@@ -110,6 +110,19 @@ enb:
mnc: 70
transmission_mode: 1
num_cells: 1
+ enable_measurements: false
+ a1_report_type: rsrp
+ a1_report_value: -105
+ a1_hysteresis: 0
+ a1_time_to_trigger: 640
+ a2_report_type: rsrp
+ a2_report_value: -110
+ a2_hysteresis: 0
+ a2_time_to_trigger: 640
+ a3_report_type: rsrp
+ a3_report_value: 6
+ a3_hysteresis: 0
+ a3_time_to_trigger: 480
srsenb:
num_prb: 100
diff --git a/example/scenarios/mod-enb-meas-event@.conf b/example/scenarios/mod-enb-meas-event@.conf
new file mode 100644
index 0000000..44f4fcd
--- /dev/null
+++ b/example/scenarios/mod-enb-meas-event@.conf
@@ -0,0 +1,7 @@
+modifiers:
+ enb:
+ - enable_measurements: true
+ ${param1}_report_type: ${param2}
+ ${param1}_report_value: ${param3}
+ ${param1}_hysteresis: ${param4}
+ ${param1}_time_to_trigger: ${param5}