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
ba609ca9
Commit
ba609ca9
authored
Sep 22, 2018
by
Bing-Kai Hong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set the RRC status in DU, Reconfigure SRB2, Manage RRC/NAS UL message in DU
parent
f6c28fad
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
283 additions
and
76 deletions
+283
-76
openair2/F1AP/f1ap_du_rrc_message_transfer.c
openair2/F1AP/f1ap_du_rrc_message_transfer.c
+276
-72
openair2/RRC/LTE/rrc_eNB.c
openair2/RRC/LTE/rrc_eNB.c
+7
-4
No files found.
openair2/F1AP/f1ap_du_rrc_message_transfer.c
View file @
ba609ca9
This diff is collapsed.
Click to expand it.
openair2/RRC/LTE/rrc_eNB.c
View file @
ba609ca9
...
...
@@ -206,9 +206,11 @@ init_SI(
AssertFatal
(
carrier
->
sizeof_SIB1
!=
255
,
"FATAL, RC.rrc[enb_mod_idP].carrier[CC_id].sizeof_SIB1 == 255"
);
}
if
((
rrc
->
node_type
==
ngran_eNB_CU
)
||
if
(
rrc
->
node_type
!=
ngran_eNB_DU
)
{
/*if ((rrc->node_type == ngran_eNB_CU) ||
(rrc->node_type == ngran_ng_eNB_CU) ||
(
rrc
->
node_type
==
ngran_eNB
))
{
(rrc->node_type == ngran_eNB)) {
*/
carrier
->
SIB23
=
(
uint8_t
*
)
malloc16
(
64
);
AssertFatal
(
carrier
->
SIB23
!=
NULL
,
"cannot allocate memory for SIB"
);
carrier
->
sizeof_SIB23
=
do_SIB23
(
...
...
@@ -630,8 +632,9 @@ static void init_MBMS(
#endif
,
NULL
);
if
((
RC
.
rrc
[
enb_mod_idP
]
->
node_type
!=
ngran_eNB_CU
)
&&
(
RC
.
rrc
[
enb_mod_idP
]
->
node_type
!=
ngran_ng_eNB_CU
))
{
if
(
(
RC
.
rrc
[
enb_mod_idP
]
->
node_type
!=
ngran_eNB_CU
)
||
(
RC
.
rrc
[
enb_mod_idP
]
->
node_type
!=
ngran_ng_eNB_CU
)
||
(
RC
.
rrc
[
enb_mod_idP
]
->
node_type
!=
ngran_gNB_CU
)
)
{
rrc_rlc_config_asn1_req
(
&
ctxt
,
NULL
,
// SRB_ToAddModList
NULL
,
// DRB_ToAddModList
...
...
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