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
canghaiwuhen
OpenXG-RAN
Commits
e54f6305
Commit
e54f6305
authored
Sep 13, 2018
by
Bing-Kai Hong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update f1 response with value from conf and request content
parent
bf0cef3f
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
81 additions
and
122 deletions
+81
-122
openair2/F1AP/f1ap_cu.c
openair2/F1AP/f1ap_cu.c
+74
-116
openair2/RRC/LTE/rrc_eNB.c
openair2/RRC/LTE/rrc_eNB.c
+7
-6
No files found.
openair2/F1AP/f1ap_cu.c
View file @
e54f6305
This diff is collapsed.
Click to expand it.
openair2/RRC/LTE/rrc_eNB.c
View file @
e54f6305
...
...
@@ -183,7 +183,7 @@ init_SI(
(
int
)
configuration
->
N_RB_DL
[
CC_id
],
(
int
)
configuration
->
phich_resource
[
CC_id
],
(
int
)
configuration
->
phich_duration
[
CC_id
]);
carrier
->
sizeof_MIB
=
do_MIB
(
&
rrc
->
carrier
[
CC_id
],
#ifdef ENABLE_ITTI
configuration
->
N_RB_DL
[
CC_id
],
...
...
@@ -7285,12 +7285,10 @@ void rrc_eNB_reconfigure_DRBs (const protocol_ctxt_t* const ctxt_pP,
void
handle_f1_setup_req
(
f1ap_setup_req_t
*
f1_setup_req
)
{
f1ap_setup_resp_t
*
f1_setup_resp
=
NULL
;
LOG_I
(
RRC
,
"Received F1 Setup Request from gNB_DU %d (%s)
\n
"
,
f1_setup_req
->
gNB_DU_id
,
f1_setup_req
->
gNB_DU_name
);
uint16_t
num_cells_to_activate
=
0
;
//
uint16_t num_cells_to_activate = 0;
int
cu_cell_ind
=
0
;
...
...
@@ -7362,10 +7360,13 @@ void handle_f1_setup_req(f1ap_setup_req_t *f1_setup_req) {
num_SI
++
;
}
F1AP_SETUP_RESP
(
msg_p
).
num_SI
[
cu_cell_ind
]
=
num_SI
;
// send ITTI message to F1AP-CU task
itti_send_msg_to_task
(
TASK_CU_F1
,
ENB_MODULE_ID_TO_INSTANCE
(
j
),
msg_p
);
cu_cell_ind
++
;
found_cell
=
1
;
F1AP_SETUP_RESP
(
msg_p
).
num_cells_to_activate
=
cu_cell_ind
;
// send ITTI message to F1AP-CU task
itti_send_msg_to_task
(
TASK_CU_F1
,
ENB_MODULE_ID_TO_INSTANCE
(
j
),
msg_p
);
break
;
}
else
{
// setup_req mcc/mnc match rrc internal list element
...
...
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