jolly has uploaded this change for review. ( 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' value of 0xff does not override the BSIC with a wrong value.
Change-Id: I63ed20160d9d45cbc3f70cec8b1c0af262fdde19 --- M src/target/firmware/apps/rssi/main.c 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/58/41358/1
diff --git a/src/target/firmware/apps/rssi/main.c b/src/target/firmware/apps/rssi/main.c index 29c5430..b407caf 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;
l1a_l23_rx(SC_DLCI_L1A_L23, msg1); l1a_l23_rx(SC_DLCI_L1A_L23, msg2);