bts: Drop duplicated f_establish_dcch

A private copy of the function already exists in LAPDm_RAW_PT.ttcn where
it is used.

Change-Id: I141269b432d85b18b273992419b5ae3470569cde
This commit is contained in:
Pau Espin 2020-10-19 18:41:39 +02:00
parent 44940c0459
commit d431248f67
1 changed files with 0 additions and 10 deletions

View File

@ -41,16 +41,6 @@ function f_lapdm_exit() runs on lapdm_test_CT {
unmap(lapdm_component:L1CTL, system:L1CTL);
}
/* master function establishing a dedicated radio channel (takes care of RACH/IMM.ASS handling) */
function f_establish_dcch() runs on lapdm_test_CT {
var BCCH_tune_req tune_req := { arfcn := { false, mp_trx0_arfcn }, combined_ccch := true };
var DCCH_establish_req est_req := { ra := 23 };
LAPDM.send(tune_req);
LAPDM.send(est_req);
LAPDM.receive(DCCH_establish_res:?);
}
/* master function switching to a dedicated radio channel */
function f_switch_dcch() runs on ConnHdlr {
var BCCH_tune_req tune_req := { arfcn := { false, mp_trx0_arfcn }, combined_ccch := true };