Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lizhongxiao
OpenXG-RAN
Commits
a8aa383f
Commit
a8aa383f
authored
Aug 18, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/NR_RLC_LCID_indexing' into integration_2023_w33
parents
f8f7c408
cb003e4f
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
147 additions
and
186 deletions
+147
-186
openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c
openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c
+133
-186
openair2/LAYER2/nr_rlc/nr_rlc_ue_manager.h
openair2/LAYER2/nr_rlc/nr_rlc_ue_manager.h
+14
-0
No files found.
openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c
View file @
a8aa383f
This diff is collapsed.
Click to expand it.
openair2/LAYER2/nr_rlc/nr_rlc_ue_manager.h
View file @
a8aa383f
...
@@ -27,12 +27,26 @@
...
@@ -27,12 +27,26 @@
typedef
void
nr_rlc_ue_manager_t
;
typedef
void
nr_rlc_ue_manager_t
;
typedef
enum
nr_rlc_rb_type
{
NR_RLC_SRB
=
0
,
NR_RLC_DRB
=
1
}
nr_rlc_rb_type
;
typedef
struct
nr_rlc_rb_t
{
nr_rlc_rb_type
type
;
union
{
int
srb_id
;
int
drb_id
;
}
choice
;
}
nr_rlc_rb_t
;
typedef
struct
nr_rlc_ue_t
{
typedef
struct
nr_rlc_ue_t
{
int
rnti
;
int
rnti
;
ue_id_t
ue_id
;
ue_id_t
ue_id
;
nr_rlc_entity_t
*
srb0
;
nr_rlc_entity_t
*
srb0
;
nr_rlc_entity_t
*
srb
[
3
];
nr_rlc_entity_t
*
srb
[
3
];
nr_rlc_entity_t
*
drb
[
MAX_DRBS_PER_UE
];
nr_rlc_entity_t
*
drb
[
MAX_DRBS_PER_UE
];
nr_rlc_rb_t
lcid2rb
[
32
];
}
nr_rlc_ue_t
;
}
nr_rlc_ue_t
;
/***********************************************************************/
/***********************************************************************/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment