laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmocom-bb/+/41358?usp=email )
Change subject: RSSI app: Use correct BSIC for RACH bursts ......................................................................
RSSI app: Use correct BSIC for RACH bursts
A regular RACH burst uses the BSIC of the cell. A 'UIC' (uplink identity code) value is used for ASCI group calls. The value 0xff disables 'UIC'.
Fixes: 23d46f003 ("ASCI: Add UIC support to random access burst")
Change-Id: I63ed20160d9d45cbc3f70cec8b1c0af262fdde19 --- M src/target/firmware/apps/rssi/main.c 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: fixeria: Looks good to me, approved Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve
diff --git a/src/target/firmware/apps/rssi/main.c b/src/target/firmware/apps/rssi/main.c index 29c5430..a871714 100644 --- a/src/target/firmware/apps/rssi/main.c +++ b/src/target/firmware/apps/rssi/main.c @@ -1209,6 +1209,7 @@ rach_req->ra = rach_ra; rach_req->offset = 0; rach_req->combined = (ccch_conf == 1); + rach_req->uic = 0xff; /* disable, use BSIC instead */
l1a_l23_rx(SC_DLCI_L1A_L23, msg1); l1a_l23_rx(SC_DLCI_L1A_L23, msg2);