fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/28833 )
Change subject: BTS_Tests: tune back to CCCH/BCCH in TC_sacch_chan_act_ho_[a]sync ......................................................................
BTS_Tests: tune back to CCCH/BCCH in TC_sacch_chan_act_ho_[a]sync
Sending L1CTL_DM_REL_REQ does not make the L1 tune back to CCCH/BCCH. We need to send a L1CTL_FBSB_REQ after releasing a dedicated channel if we want to establish another one. This is essential when running tests using Calypso PHY, and will be required once we have proper trxcon_fsm implementation [1] merged.
Related: [1] osmocom-bb.git Ifaf63ead9dd180181358e771367b2a686ba159ca Change-Id: I65fb243a62fc7670b43f467d6b79268cdfb98f36 --- M bts/BTS_Tests.ttcn 1 file changed, 12 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/33/28833/1
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn index 0e7d5a1..58a7e44 100644 --- a/bts/BTS_Tests.ttcn +++ b/bts/BTS_Tests.ttcn @@ -1457,6 +1457,9 @@ f_rsl_chan_deact(); f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
+ /* Tune back to CCCH/BCCH */ + f_l1_tune(L1CTL); +
/* Step 2: Activate ASYNC HO channel with MS power IE */
@@ -1534,6 +1537,9 @@ f_rsl_chan_deact(); f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
+ /* Tune back to CCCH/BCCH */ + f_l1_tune(L1CTL); +
/* Step 2a: Activate SYNC HO channel with only MS power IE */
@@ -1559,6 +1565,9 @@ f_rsl_chan_deact(); f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
+ /* Tune back to CCCH/BCCH */ + f_l1_tune(L1CTL); +
/* Step 2b: Activate SYNC HO channel with TA IE */
@@ -1583,6 +1592,9 @@ f_rsl_chan_deact(); f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
+ /* Tune back to CCCH/BCCH */ + f_l1_tune(L1CTL); +
/* Step 3: Activate SYNC HO channel with MS power IE and TA IE */