aboutsummaryrefslogtreecommitdiffstats
path: root/library/L1CTL_PortType.ttcn
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2022-09-02 16:35:49 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2022-09-07 10:46:17 +0200
commit440e1dcb3470619fe93b971d3b26b4b730d01a15 (patch)
treebf7ab88678e38485ccbd13c92b68ff2f51df5269 /library/L1CTL_PortType.ttcn
parent71ed46395794f7c3bab3a9985f3d0cbac481e08a (diff)
bts: Pass AMR codec info over L1CTL and RSL
Diffstat (limited to 'library/L1CTL_PortType.ttcn')
-rw-r--r--library/L1CTL_PortType.ttcn5
1 files changed, 3 insertions, 2 deletions
diff --git a/library/L1CTL_PortType.ttcn b/library/L1CTL_PortType.ttcn
index ed235d3e..80fa0743 100644
--- a/library/L1CTL_PortType.ttcn
+++ b/library/L1CTL_PortType.ttcn
@@ -106,9 +106,10 @@ module L1CTL_PortType {
}
}
- function f_L1CTL_TCH_MODE(L1CTL_PT pt, L1ctlTchMode tch_mode) {
+ function f_L1CTL_TCH_MODE(L1CTL_PT pt,
+ template (value) L1ctlUlMessage tch_mode_req_tmpl := ts_L1CTL_TCH_MODE_REQ) {
timer T := 2.0;
- pt.send(ts_L1CTL_TCH_MODE_REQ(tch_mode));
+ pt.send(tch_mode_req_tmpl);
T.start;
alt {
[] pt.receive(tr_L1CTL_MsgType(L1CTL_TCH_MODE_CONF)) { }