fixeria has submitted this change. ( https://gerrit.osmocom.org/c/osmocom-bb/+/34651?usp=email )
Change subject: modem: grr_fsm: permit loop transition for GRR_ST_PACKET_ACCESS ......................................................................
modem: grr_fsm: permit loop transition for GRR_ST_PACKET_ACCESS
I forgot to permit the loop state transmission, so the modem app gets stuck in GRR_ST_PACKET_ACCESS is no IMM ASS is received...
Change-Id: I059d2929f7f724cfe26935bf35c167e60157451f Fixes: 9978b00e "modem: grr: implement RACH.req retransmission" --- M src/host/layer23/src/modem/grr.c 1 file changed, 14 insertions(+), 0 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, approved
diff --git a/src/host/layer23/src/modem/grr.c b/src/host/layer23/src/modem/grr.c index 1bb172e..cbabdc9 100644 --- a/src/host/layer23/src/modem/grr.c +++ b/src/host/layer23/src/modem/grr.c @@ -804,6 +804,7 @@ [GRR_ST_PACKET_ACCESS] = { .name = "PACKET_ACCESS", .out_state_mask = S(GRR_ST_PACKET_NOT_READY) + | S(GRR_ST_PACKET_ACCESS) | S(GRR_ST_PACKET_TRANSFER), .in_event_mask = S(GRR_EV_BCCH_BLOCK_IND) | S(GRR_EV_PCH_AGCH_BLOCK_IND)