aboutsummaryrefslogtreecommitdiffstats
path: root/library/L1CTL_PortType.ttcn
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2023-03-18 00:12:09 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2023-03-19 07:05:50 +0700
commit72a76b5a8a5f46bd4c44fd749b56720fc6ee6136 (patch)
tree495fa7bcb85183fcc171e7dd9361255559ff7fee /library/L1CTL_PortType.ttcn
parentaf0aae66db67e32e7a26e120cf4ecd018cac0782 (diff)
library: L1CTL: rework GPRS related message definitions
The old GPRS related messages are no longer valid. Use the new message definitions supported by both trxcon and virtphy since recently. Comment out lines referencing the old definitions in LAPDm_RAW_PT.ttcn. This module contains an implementation of the RLC/MAC abstraction layer, which is currently not used anywhere. Change-Id: Ib8f4459480bbe12584a6fa71882f745f03c5055d Related: osmocom-bb.git I9567d64f9d00262e36147e8d7e541e5e246bda5f Related: OS#5500
Diffstat (limited to 'library/L1CTL_PortType.ttcn')
-rw-r--r--library/L1CTL_PortType.ttcn15
1 files changed, 0 insertions, 15 deletions
diff --git a/library/L1CTL_PortType.ttcn b/library/L1CTL_PortType.ttcn
index d84cee49..07c536ce 100644
--- a/library/L1CTL_PortType.ttcn
+++ b/library/L1CTL_PortType.ttcn
@@ -229,21 +229,6 @@ module L1CTL_PortType {
return rr.payload.imm_ass;
}
- function f_L1CTL_TBF_CFG(L1CTL_PT pt, boolean is_uplink, TfiUsfArr tfi_usf) {
- timer T := 2.0;
- T.start;
- pt.send(ts_L1CTL_TBF_CFG_REQ(is_uplink, tfi_usf));
- alt {
- [] pt.receive(tr_L1CTL_TBF_CFG_CONF(is_uplink)) {}
- [] pt.receive { repeat };
- [] T.timeout {
- setverdict(fail, "Timeout waiting for L1CTL_TBF_CFG_CONF");
- mtc.stop;
- };
- }
- T.stop;
- }
-
/* Send DM_EST_REQ from parameters derived from IMM ASS */
function f_L1CTL_DM_EST_REQ_IA(L1CTL_PT pt, ImmediateAssignment imm_ass, L1ctlMA ma := {}) {
/* FIXME: handle Packet Channel Description */