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
spbro
OpenXG-RAN
Commits
cb003e4f
Commit
cb003e4f
authored
Aug 16, 2023
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mapping LCID to RBID to find RLC entity
parent
5b943f59
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 @
cb003e4f
This diff is collapsed.
Click to expand it.
openair2/LAYER2/nr_rlc/nr_rlc_ue_manager.h
View file @
cb003e4f
...
...
@@ -27,12 +27,26 @@
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
{
int
rnti
;
ue_id_t
ue_id
;
nr_rlc_entity_t
*
srb0
;
nr_rlc_entity_t
*
srb
[
3
];
nr_rlc_entity_t
*
drb
[
MAX_DRBS_PER_UE
];
nr_rlc_rb_t
lcid2rb
[
32
];
}
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