This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Harald Welte gerrit-no-reply at lists.osmocom.org
Review at https://gerrit.osmocom.org/1275
PCU: Send Immedate Assignment over AGCH, not PCH
For some unknown reason, the bts class of the PCU appears to be
transmitting its immediate assignments via the PCH, rather than the
AGCH. I don't think this is intentional.
Change-Id: I5bebc5a15efcd6c74b50f02585ffcc8f53cf2ee3
---
M src/bts.cpp
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-pcu refs/changes/75/1275/1
diff --git a/src/bts.cpp b/src/bts.cpp
index fe3368d..763fa2a 100644
--- a/src/bts.cpp
+++ b/src/bts.cpp
@@ -746,7 +746,7 @@
tbf->poll_fn, m_bts.alpha, m_bts.gamma, -1);
if (plen >= 0) {
immediate_assignment_dl_tbf();
- pcu_l1if_tx_pch(immediate_assignment, plen, imsi);
+ pcu_l1if_tx_agch(immediate_assignment, plen);
}
bitvec_free(immediate_assignment);
--
To view, visit https://gerrit.osmocom.org/1275
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I5bebc5a15efcd6c74b50f02585ffcc8f53cf2ee3
Gerrit-PatchSet: 1
Gerrit-Project: osmo-pcu
Gerrit-Branch: master
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>