aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2023-09-27 01:59:20 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2023-09-27 03:01:43 +0200
commit99f9c8a14f97853f6f3152895bb73ff5e6600ec3 (patch)
tree54bcc9cd2b1efebd9705e2ab677f36fb729f1ef2
parent6e978dc2532eed4774f0a20f1201a1451047adbe (diff)
IuUP_Emulation: fix AMR SID SDU size
See 3GPP TS 26.102 Table 6-2, an AMR SID should have 39 bits. Change-Id: I9afb28ca6e23f7976edcc130ea012be34e04eb4b
-rw-r--r--library/IuUP_Emulation.ttcn4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/IuUP_Emulation.ttcn b/library/IuUP_Emulation.ttcn
index b649e44d..3bda958b 100644
--- a/library/IuUP_Emulation.ttcn
+++ b/library/IuUP_Emulation.ttcn
@@ -35,7 +35,7 @@ template (value) IuUP_RabFlowCombination t_IuUP_RFC(IuUP_RFCI rfci, RecOfU8 subf
}
template (value) IuUP_RabFlowCombination t_IuUP_RFC_AMR_12_2(IuUP_RFCI rfci) := t_IuUP_RFC(rfci, {81, 103, 60}, 1);
-template (value) IuUP_RabFlowCombination t_IuUP_RFC_AMR_SID(IuUP_RFCI rfci) := t_IuUP_RFC(rfci, {34, 0, 0}, 7);
+template (value) IuUP_RabFlowCombination t_IuUP_RFC_AMR_SID(IuUP_RFCI rfci) := t_IuUP_RFC(rfci, {39, 0, 0}, 7);
template (value) IuUP_RabFlowCombination t_IuUP_RFC_AMR_NO_DATA(IuUP_RFCI rfci) := t_IuUP_RFC(rfci, {0, 0, 0}, 1);
@@ -46,7 +46,7 @@ const IuUP_RabFlowCombinationList c_IuUP_Config_RabFlowCombination_def := {
ipti := 1
}, {
rfci := 1,
- sub_flow_bits := {34, 0, 0},
+ sub_flow_bits := {39, 0, 0},
ipti := 7
}, {
rfci := 2,