diff options
author | Pau Espin Pedrol <pespin@sysmocom.de> | 2020-11-10 17:45:31 +0100 |
---|---|---|
committer | laforge <laforge@osmocom.org> | 2020-11-11 20:08:47 +0000 |
commit | 80c1baa71e8eb8bd5955fc58ea58fe881d52e3b3 (patch) | |
tree | b41611e9de6eb11e740bf326d765b8e2b7423a53 /library | |
parent | d077075b5ee69acebf21ff2ff9ccd7aa9adc6b2b (diff) |
RLCMAC: Fix stall_ind param not used
Change-Id: Ie1b6c66467028da8f93ccc42e5048daca3b68192
Diffstat (limited to 'library')
-rw-r--r-- | library/RLCMAC_Templates.ttcn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/RLCMAC_Templates.ttcn b/library/RLCMAC_Templates.ttcn index b18c8db..9722f43 100644 --- a/library/RLCMAC_Templates.ttcn +++ b/library/RLCMAC_Templates.ttcn @@ -382,7 +382,7 @@ module RLCMAC_Templates { mac_hdr := { payload_type := MAC_PT_RLC_DATA, countdown := cv, - stall_ind := false, + stall_ind := stall, retry := false, spare := '0'B, pfi_ind := false, @@ -403,7 +403,7 @@ module RLCMAC_Templates { mac_hdr := { payload_type := MAC_PT_RLC_DATA, countdown := cv, - stall_ind := false, + stall_ind := stall, retry := false, spare := '0'B, pfi_ind := false, |