fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38694?usp=email )
Change subject: bts: use proper ActType in f_TC_data_rtp_loopback() ......................................................................
bts: use proper ActType in f_TC_data_rtp_loopback()
For the sake of correctness, use c_RSL_IE_ActType_ASS (assignment) when activating TCH/[FH] channels in TC_data_rtp_*. This is the kind of ActType that would normally be used by the BSC.
Change-Id: Ide773c3fcfdab881756d5fe5b6c314b0c0335043 --- M bts/BTS_Tests.ttcn 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/94/38694/1
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn index 64804f5..a98b7f3 100644 --- a/bts/BTS_Tests.ttcn +++ b/bts/BTS_Tests.ttcn @@ -8647,7 +8647,7 @@
/* Tune to the dedicated channel */ f_l1_tune(L1CTL); - f_est_dchan(); + f_est_dchan(act_type := c_RSL_IE_ActType_ASS);
/* Send a pseudo-random data frame on the Uplink */ log("Sending Uplink TCH (len=", lengthof(udata), "): ", udata);