This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 129
/
packet_resource_request_message_content.py
58 lines (53 loc) · 2.31 KB
/
packet_resource_request_message_content.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- coding: UTF-8 -*-
#/**
# * Software Name : pycrate
# * Version : 0.4
# *
# * Copyright 2018. Benoit Michau. P1sec.
# *
# * This library is free software; you can redistribute it and/or
# * modify it under the terms of the GNU Lesser General Public
# * License as published by the Free Software Foundation; either
# * version 2.1 of the License, or (at your option) any later version.
# *
# * This library is distributed in the hope that it will be useful,
# * but WITHOUT ANY WARRANTY; without even the implied warranty of
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# * Lesser General Public License for more details.
# *
# * You should have received a copy of the GNU Lesser General Public
# * License along with this library; if not, write to the Free Software
# * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# * MA 02110-1301 USA
# *
# *--------------------------------------------------------
# * File Name : pycrate_gmr1_csn1/packet_resource_request_message_content.py
# * Created : 2023-10-24
# * Authors : Benoit Michau
# *--------------------------------------------------------
#*/
# specification: ETSI TS 101 376-04-12
# section: 11.2.16 Packet resource request (Iu mode only)
# top-level object: Packet Resource Request message content
# external references
from pycrate_gmr1_csn1.global_tfi_ie import global_tfi_ie
from pycrate_gmr1_csn1.iu_mode_channel_request_description_ie import iu_mode_channel_request_description_ie
from pycrate_gmr1_csn1.padding_bits import padding_bits
# code automatically generated by pycrate_csn1
# change object type with type=CSN1T_BSTR (default type is CSN1T_UINT) in init
# add dict for value interpretation with dic={...} in CSN1Bit init
# add dict for key interpretation with kdic={...} in CSN1Alt init
from pycrate_csn1.csnobj import *
packet_resource_request_message_content = CSN1List(name='packet_resource_request_message_content', list=[
CSN1List(list=[
CSN1Val(name='', val='0'),
CSN1Ref(name='global_tfi', obj=global_tfi_ie),
CSN1Val(name='', val='10'),
CSN1Bit(name='g_rnti', bit=32)]),
CSN1Bit(name='retransmission_of_prr'),
CSN1Ref(name='iu_mode_channel_request_description', obj=iu_mode_channel_request_description_ie),
CSN1Alt(alt={
'0': ('', []),
'1': ('', [
CSN1Bit(name='hfn_lsb')])}),
CSN1Ref(obj=padding_bits)])