Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
Michael Black
OpenXG UE
Commits
3cdc03d0
Commit
3cdc03d0
authored
Aug 19, 2021
by
Laurent Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove a race F1AP->NR RRC
parent
98728030
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
289 additions
and
290 deletions
+289
-290
openair2/COMMON/rrc_messages_def.h
openair2/COMMON/rrc_messages_def.h
+2
-0
openair2/COMMON/rrc_messages_types.h
openair2/COMMON/rrc_messages_types.h
+6
-0
openair2/F1AP/f1ap_du_rrc_message_transfer.c
openair2/F1AP/f1ap_du_rrc_message_transfer.c
+15
-289
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+266
-1
No files found.
openair2/COMMON/rrc_messages_def.h
View file @
3cdc03d0
...
...
@@ -79,3 +79,5 @@ MESSAGE_DEF(RRC_SUBFRAME_PROCESS, MESSAGE_PRIORITY_MED, RrcSubframeP
// eNB: RLC -> RRC messages
MESSAGE_DEF
(
RLC_SDU_INDICATION
,
MESSAGE_PRIORITY_MED
,
RlcSduIndication
,
rlc_sdu_indication
)
MESSAGE_DEF
(
NR_DU_RRC_DL_INDICATION
,
MESSAGE_PRIORITY_MED
,
NRDuDlReq_t
,
nr_du_dl_req
)
openair2/COMMON/rrc_messages_types.h
View file @
3cdc03d0
...
...
@@ -89,6 +89,7 @@
#define RRC_SUBFRAME_PROCESS(mSGpTR) (mSGpTR)->ittiMsg.rrc_subframe_process
#define RLC_SDU_INDICATION(mSGpTR) (mSGpTR)->ittiMsg.rlc_sdu_indication
#define NRDuDlReq(mSGpTR) (mSGpTR)->ittiMsg.nr_du_dl_req
//-------------------------------------------------------------------------------------------//
typedef
struct
RrcStateInd_s
{
...
...
@@ -416,6 +417,11 @@ typedef struct NRRrcConfigurationReq_s {
int
pucch_TargetSNRx10
;
}
gNB_RrcConfigurationReq
;
typedef
struct
NRDuDlReq_s
{
rnti_t
rnti
;
mem_block_t
*
buf
;
uint64_t
srb_id
;
}
NRDuDlReq_t
;
// UE: NAS -> RRC messages
typedef
kenb_refresh_req_t
NasKenbRefreshReq
;
...
...
openair2/F1AP/f1ap_du_rrc_message_transfer.c
View file @
3cdc03d0
This diff is collapsed.
Click to expand it.
openair2/RRC/NR/rrc_gNB.c
View file @
3cdc03d0
This diff is collapsed.
Click to expand it.
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