fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmocom-bb/+/30965 )
Change subject: modem: fix wrong chan_nr (missing tn) in modem_rx_imm_ass()
......................................................................
modem: fix wrong chan_nr (missing tn) in modem_rx_imm_ass()
Change-Id: Iba68424e6db0ad655c6146d92edd3cc90e2e2566
Fixes: 49d993e4abdd8fac8b111e92078563fd9bb28df1
Related: OS#5500
---
M src/host/layer23/src/modem/app_modem.c
1 file changed, 4 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/65/30965/1
diff --git a/src/host/layer23/src/modem/app_modem.c
b/src/host/layer23/src/modem/app_modem.c
index d21b16b..7551351 100644
--- a/src/host/layer23/src/modem/app_modem.c
+++ b/src/host/layer23/src/modem/app_modem.c
@@ -243,7 +243,8 @@
ia->chan_desc.chan_nr, arfcn, ch_ts, ch_subch,
ia->chan_desc.h0.tsc);
- l1ctl_tx_dm_est_req_h0(ms, arfcn, RSL_CHAN_OSMO_PDCH,
+ l1ctl_tx_dm_est_req_h0(ms, arfcn,
+ RSL_CHAN_OSMO_PDCH | ch_ts,
ia->chan_desc.h0.tsc, GSM48_CMODE_SIGN, 0);
} else {
/* Hopping */
@@ -272,7 +273,8 @@
j++;
}
- l1ctl_tx_dm_est_req_h1(ms, maio, hsn, &ma[0], ma_len, RSL_CHAN_OSMO_PDCH,
+ l1ctl_tx_dm_est_req_h1(ms, maio, hsn, &ma[0], ma_len,
+ RSL_CHAN_OSMO_PDCH | ch_ts,
ia->chan_desc.h1.tsc, GSM48_CMODE_SIGN, 0);
}
--
To view, visit
https://gerrit.osmocom.org/c/osmocom-bb/+/30965
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Iba68424e6db0ad655c6146d92edd3cc90e2e2566
Gerrit-Change-Number: 30965
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange