aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmo-bts/measurement.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/osmo-bts/measurement.h')
-rw-r--r--include/osmo-bts/measurement.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/osmo-bts/measurement.h b/include/osmo-bts/measurement.h
new file mode 100644
index 00000000..5ad6795e
--- /dev/null
+++ b/include/osmo-bts/measurement.h
@@ -0,0 +1,13 @@
+#ifndef OSMO_BTS_MEAS_H
+#define OSMO_BTS_MEAS_H
+
+int lchan_new_ul_meas(struct gsm_lchan *lchan, struct bts_ul_meas *ulm);
+
+int lchan_meas_check_compute(struct gsm_lchan *lchan, uint32_t fn);
+int ts_meas_check_compute(struct gsm_bts_trx_ts *ts, uint32_t fn);
+int trx_meas_check_compute(struct gsm_bts_trx *trx, uint32_t fn);
+
+/* build the 3 byte RSL uplinke measurement IE content */
+int lchan_build_rsl_ul_meas(struct gsm_lchan *, uint8_t *buf);
+
+#endif