laforge submitted this change.
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(-)
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);
To view, visit change 41358. To unsubscribe, or for help writing mail filters, visit settings.