aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2016-05-11 17:33:17 +0200
committerHolger Freyther <holger@freyther.de>2016-05-17 16:10:31 +0000
commit764b022fc69c4bb9816e12801186f8fa25f8dd72 (patch)
treeadf301660c4fbedc31c820815d763949957fb47f /include/osmocom
parentfe65fa7e36a400d362666e2c5bd0f289d45aa56a (diff)
Add function to make Uplink Measurement
It assembles RSL Uplink Measurement IE according to 3GPP TS 08.58 ยง9.3.25. The function is based on lchan_build_rsl_ul_meas() from OsmoBTS but optionally includes DTX information. Change-Id: Ib37107bcc9909e5105ea711de42d3fb1db7e8d9e Reviewed-on: https://gerrit.osmocom.org/44 Tested-by: Jenkins Builder Reviewed-by: Harald Welte <laforge@gnumonks.org>
Diffstat (limited to 'include/osmocom')
-rw-r--r--include/osmocom/gsm/meas_rep.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/osmocom/gsm/meas_rep.h b/include/osmocom/gsm/meas_rep.h
index 09c2c4f2..90c981dd 100644
--- a/include/osmocom/gsm/meas_rep.h
+++ b/include/osmocom/gsm/meas_rep.h
@@ -1,6 +1,7 @@
#pragma once
#include <stdint.h>
+#include <stdbool.h>
/* RX Level and RX Quality */
struct gsm_rx_lev_qual {
@@ -24,3 +25,6 @@ enum meas_rep_field {
MEAS_REP_UL_RXQUAL_FULL,
MEAS_REP_UL_RXQUAL_SUB,
};
+
+size_t gsm0858_rsl_ul_meas_enc(struct gsm_meas_rep_unidir *mru, bool dtxd_used,
+ uint8_t *buf);