fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmocom-bb/+/30485 )
Change subject: [HACK] trxcon: TRXCON_EV_DCH_REL_REQ does not switch to TRXCON_ST_RESET ......................................................................
[HACK] trxcon: TRXCON_EV_DCH_REL_REQ does not switch to TRXCON_ST_RESET
This is a workaround needed to make MT calls work in the mobile app.
Change-Id: I5bbe6ca4cc6299f9faf343822c992a6872a45081 --- M src/host/trxcon/src/trxcon_fsm.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/85/30485/1
diff --git a/src/host/trxcon/src/trxcon_fsm.c b/src/host/trxcon/src/trxcon_fsm.c index 47da0bd..0b5a1e0 100644 --- a/src/host/trxcon/src/trxcon_fsm.c +++ b/src/host/trxcon/src/trxcon_fsm.c @@ -418,7 +418,7 @@ break; case TRXCON_EV_DCH_REL_REQ: l1sched_reset(trxcon->sched, false); - osmo_fsm_inst_state_chg(fi, TRXCON_ST_RESET, 0, 0); + /* FIXME: osmo_fsm_inst_state_chg(fi, TRXCON_ST_RESET, 0, 0); */ break; case TRXCON_EV_SET_TCH_MODE_REQ: { @@ -541,7 +541,7 @@ break; case TRXCON_EV_DCH_REL_REQ: l1sched_reset(trxcon->sched, false); - osmo_fsm_inst_state_chg(fi, TRXCON_ST_RESET, 0, 0); + /* FIXME: osmo_fsm_inst_state_chg(fi, TRXCON_ST_RESET, 0, 0); */ break; default: OSMO_ASSERT(0);