aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2016-11-17 20:03:45 +0100
committerHarald Welte <laforge@gnumonks.org>2016-11-17 21:09:55 +0100
commite18f0a4e6c046253cf511e8f9c5085072cbe16cb (patch)
tree99bce8c31894b5ae42263241a4adb310d992dc33
parent68fc12775fac03e5e26a008dfa68c92498bfb772 (diff)
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
-rw-r--r--src/bts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bts.cpp b/src/bts.cpp
index fe3368da..763fa2a4 100644
--- a/src/bts.cpp
+++ b/src/bts.cpp
@@ -746,7 +746,7 @@ void BTS::snd_dl_ass(gprs_rlcmac_tbf *tbf, uint8_t poll, const char *imsi)
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);