aboutsummaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2024-02-05 21:42:29 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2024-02-05 21:43:05 +0700
commit090759a297379696afe376341a6dab4024f43e1c (patch)
tree2a6011b327a1e9cd4983070f1959188f0ab9d205 /library
parent4944a5cee6a6d117ae2dcd102dd675032ea1b163 (diff)
library/L1CTL_Types: add definition of L1CTL_GPRS_UL_BLOCK_CNF
Diffstat (limited to 'library')
-rw-r--r--library/L1CTL_Types.ttcn12
1 files changed, 11 insertions, 1 deletions
diff --git a/library/L1CTL_Types.ttcn b/library/L1CTL_Types.ttcn
index 2e1f34bf..7571b4f3 100644
--- a/library/L1CTL_Types.ttcn
+++ b/library/L1CTL_Types.ttcn
@@ -54,7 +54,8 @@ module L1CTL_Types {
L1CTL_GPRS_UL_BLOCK_REQ,
L1CTL_GPRS_DL_BLOCK_IND,
L1CTL_EXT_RACH_REQ,
- L1CTL_GPRS_RTS_IND
+ L1CTL_GPRS_RTS_IND,
+ L1CTL_GPRS_UL_BLOCK_CNF
} with { variant "FIELDLENGTH(8)" };
type enumerated L1ctlCcchMode {
@@ -342,6 +343,13 @@ module L1CTL_Types {
octetstring data
} with { variant (data) "BYTEORDER(first)" };
+ /* payload of L1CTL_GPRS_UL_BLOCK_CNF */
+ type record L1ctlGprsUlBlockCnf {
+ uint32_t fn,
+ uint8_t tn,
+ octetstring data
+ } with { variant "" };
+
/* payload of L1CTL_GPRS_DL_BLOCK_IND */
type record L1ctlGprsDlBlockInd {
L1ctlGprsBlockHdr hdr,
@@ -390,6 +398,7 @@ module L1CTL_Types {
L1ctlGprsUlTbfCfgReq ul_tbf_cfg_req,
L1ctlGprsDlTbfCfgReq dl_tbf_cfg_req,
L1ctlGprsUlBlockReq ul_block_req,
+ L1ctlGprsUlBlockCnf ul_block_cnf,
L1ctlGprsDlBlockInd dl_block_ind,
L1ctlExtRachReq ext_rach_req,
L1ctlGprsRtsInd rts_ind,
@@ -445,6 +454,7 @@ module L1CTL_Types {
ul_tbf_cfg_req, header.msg_type = L1CTL_GPRS_UL_TBF_CFG_REQ;
dl_tbf_cfg_req, header.msg_type = L1CTL_GPRS_DL_TBF_CFG_REQ;
ul_block_req, header.msg_type = L1CTL_GPRS_UL_BLOCK_REQ;
+ ul_block_cnf, header.msg_type = L1CTL_GPRS_UL_BLOCK_CNF;
dl_block_ind, header.msg_type = L1CTL_GPRS_DL_BLOCK_IND;
ext_rach_req, header.msg_type = L1CTL_EXT_RACH_REQ;
rts_ind, header.msg_type = L1CTL_GPRS_RTS_IND;