aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-trx/l1_if.h
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2013-06-12 09:12:04 +0200
committerHarald Welte <laforge@gnumonks.org>2015-09-22 16:41:28 +0200
commitb9a917a13880f9d6274409b9d3c9b56de484125f (patch)
treee419c598bafc3bc821409699f05213718931d642 /src/osmo-bts-trx/l1_if.h
parent6527dffc94686672add10fe6b66f898c436ea34c (diff)
TRX: Handover access burst support
Diffstat (limited to 'src/osmo-bts-trx/l1_if.h')
-rw-r--r--src/osmo-bts-trx/l1_if.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/osmo-bts-trx/l1_if.h b/src/osmo-bts-trx/l1_if.h
index 9e4a3f47..5b4dce3c 100644
--- a/src/osmo-bts-trx/l1_if.h
+++ b/src/osmo-bts-trx/l1_if.h
@@ -100,6 +100,9 @@ struct trx_chan_state {
float toa_sum; /* sum of TOA values */
int toa_num; /* number of TOA value */
} meas;
+
+ /* handover */
+ uint8_t ho_rach_detect; /* if rach detection is on */
};
struct trx_config {
@@ -157,6 +160,7 @@ struct trx_l1h {
/* Channel states for all channels on all timeslots */
struct trx_chan_state chan_states[8][_TRX_CHAN_MAX];
struct llist_head dl_prims[8]; /* Queue primitves for TX */
+ uint8_t ho_rach_detect[8][8];
};
struct trx_l1h *l1if_open(struct gsm_bts_trx *trx);