aboutsummaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-06-29 08:51:42 +0200
committerHarald Welte <laforge@gnumonks.org>2018-06-29 17:53:10 +0000
commit15de8ba162c08307bca4c42f4594b08d2e644128 (patch)
treec20a0883e0441276c3c3b85f704f59d10750d41c /library
parent4de3e377d1e6add14930260e1323b41275b21377 (diff)
bts: Extend Osmocom-specific RSL "supplementary meas info IE"
In osmo-bts Change-Id Iea4a4781481f77c6163d82dcd71a844a5be87bf2 we introduce an Osmocom specific "supplementary measurement info IE" into the RSL MEAS REP message. This commit adds the related type definitions and extends the related matching in BTS_Tests.ttcn. Change-Id: I5d1114c73508c67ad7cd9864d7370367612b1241
Diffstat (limited to 'library')
-rw-r--r--library/RSL_Types.ttcn10
1 files changed, 9 insertions, 1 deletions
diff --git a/library/RSL_Types.ttcn b/library/RSL_Types.ttcn
index e1f6af0e..d4d0c4d4 100644
--- a/library/RSL_Types.ttcn
+++ b/library/RSL_Types.ttcn
@@ -473,6 +473,14 @@ module RSL_Types {
frame_nr := tr_RSL_IE_FrameNumber(frame_nr)
}
+ /* Osmocom Extension */
+ type record RSL_IE_UplinkMeasSuppMeasInfo {
+ int16_t toa256_mean,
+ int16_t toa256_min,
+ int16_t toa256_max,
+ uint16_t toa256_std_dev
+ };
+
/* 9.3.25 */
type record RSL_IE_UplinkMeas {
uint8_t len,
@@ -484,7 +492,7 @@ module RSL_Types {
BIT2 reserved2,
uint3_t rxq_f_u,
uint3_t rxq_s_u,
- octetstring supp_meas_info optional
+ RSL_IE_UplinkMeasSuppMeasInfo supp_meas_info optional
} with { variant (len) "LENGTHTO(rfu,dtx_d,rxlev_f_u,reserved1,rxlev_s_u,reserved2,rxq_f_u,rxq_s_u,supp_meas_info)" };
/* 9.3.26 */