jolly has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-bts/+/37528?usp=email )
Change subject: Fix ASCI access burst detection with osmo-bts-trx
......................................................................
Fix ASCI access burst detection with osmo-bts-trx
The access burst detection must be enabled on channel activation, if the
handover is activated or if the channel is used for group / broadcast
call.
Related: OS#6467
Change-Id: I467a11662a580e33932ae142dcf605f4c0672daf
---
M src/osmo-bts-trx/l1_if.c
1 file changed, 16 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bts refs/changes/28/37528/1
diff --git a/src/osmo-bts-trx/l1_if.c b/src/osmo-bts-trx/l1_if.c
index 54f5bd2..13df7f7 100644
--- a/src/osmo-bts-trx/l1_if.c
+++ b/src/osmo-bts-trx/l1_if.c
@@ -472,7 +472,8 @@
lchan->tch.amr_mr.mode[2].mode,
lchan->tch.amr_mr.mode[3].mode,
amr_get_initial_mode(lchan),
- (lchan->ho.active == HANDOVER_ENABLED));
+ (lchan->ho.active == HANDOVER_ENABLED) ||
+ rsl_chan_rt_is_asci(lchan->rsl_chan_rt));
/* set lchan active */
lchan_set_state(lchan, LCHAN_S_ACTIVE);
/* set initial ciphering */
--
To view, visit
https://gerrit.osmocom.org/c/osmo-bts/+/37528?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bts
Gerrit-Branch: master
Gerrit-Change-Id: I467a11662a580e33932ae142dcf605f4c0672daf
Gerrit-Change-Number: 37528
Gerrit-PatchSet: 1
Gerrit-Owner: jolly <andreas(a)eversberg.eu>
Gerrit-MessageType: newchange