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
eda6f864
Commit
eda6f864
authored
Jun 09, 2017
by
kvyat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sync
parent
d24d18a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
2 deletions
+19
-2
openair2/RRC/LITE/rrc_eNB.c
openair2/RRC/LITE/rrc_eNB.c
+19
-2
No files found.
openair2/RRC/LITE/rrc_eNB.c
View file @
eda6f864
...
...
@@ -2384,19 +2384,27 @@ rrc_eNB_process_MeasurementReport(
)
//-----------------------------------------------------------------------------
{
int
target_rsrp
,
source_rsrp
;
int
offset_db
=
4
;
T
(
T_ENB_RRC_MEASUREMENT_REPORT
,
T_INT
(
ctxt_pP
->
module_id
),
T_INT
(
ctxt_pP
->
frame
),
T_INT
(
ctxt_pP
->
subframe
),
T_INT
(
ctxt_pP
->
rnti
));
#if 0
LOG_I(RRC, "[eNB %d] Frame %d: Process Measurement Report From UE %x (Measurement Id %d)\n",
ctxt_pP->module_id, ctxt_pP->frame, ctxt_pP->rnti, (int)measResults2->measId);
#endif
if
(
measResults2
->
measResultNeighCells
==
NULL
)
{
#if 0
LOG_I(RRC, "Cells are not discovered\n");
#endif
return
;
}
else
{
if
(
measResults2
->
measId
==
1
){
#if 0
LOG_I(RRC, "Cells are discovered\n");
if (measResults2->measResultNeighCells->choice.measResultListEUTRA.list.count > 0) {
LOG_I(RRC, "Physical Cell Id %d\n",
...
...
@@ -2408,10 +2416,12 @@ rrc_eNB_process_MeasurementReport(
(int)*(measResults2->measResultNeighCells->choice.measResultListEUTRA.list.array[0]->
measResult.rsrqResult));
}
#endif
}
else
if
(
measResults2
->
measId
==
4
)
{
LOG_I
(
RRC
,
"A3 event happened...
\n
"
);
if
(
measResults2
->
measResultNeighCells
->
choice
.
measResultListEUTRA
.
list
.
count
>
0
)
{
/* TODO: handle all values of the array, not just the first */
LOG_I
(
RRC
,
"RSRP of Source %ld
\n
"
,
measResults2
->
measResultPCell
.
rsrpResult
);
LOG_I
(
RRC
,
"RSRQ of Source %ld
\n
"
,
measResults2
->
measResultPCell
.
rsrqResult
);
LOG_I
(
RRC
,
"Physical Cell Id %d
\n
"
,
...
...
@@ -2422,23 +2432,30 @@ rrc_eNB_process_MeasurementReport(
LOG_I
(
RRC
,
"RSRQ of Target %d
\n
"
,
(
int
)
*
(
measResults2
->
measResultNeighCells
->
choice
.
measResultListEUTRA
.
list
.
array
[
0
]
->
measResult
.
rsrqResult
));
source_rsrp
=
measResults2
->
measResultPCell
.
rsrpResult
;
target_rsrp
=
(
int
)
*
(
measResults2
->
measResultNeighCells
->
choice
.
measResultListEUTRA
.
list
.
array
[
0
]
->
measResult
.
rsrpResult
);
}
exit
(
0
);
}
else
{
#if 0
LOG_I(RRC, "Other events happened...\n");
#endif
}
}
#if 0
#if defined(Rel10) || defined(Rel14)
LOG_I(RRC, "RSRP of Source %ld\n", measResults2->measResultPCell.rsrpResult);
LOG_I(RRC, "RSRQ of Source %ld\n", measResults2->measResultPCell.rsrqResult);
#else
LOG_I(RRC, "RSRP of Source %ld\n", measResults2->measResultServCell.rsrpResult);
LOG_I(RRC, "RSRQ of Source %ld\n", measResults2->measResultServCell.rsrqResult);
#endif
#endif
/* algorithm to decide whether to trigger HO or not */
if
(
!
(
measResults2
->
measId
==
4
&&
target_rsrp
-
source_rsrp
>=
offset_db
))
return
;
/* if the UE is not in handover mode, start handover procedure */
if
(
ue_context_pP
->
ue_context
.
Status
!=
RRC_HO_EXECUTION
)
{
...
...
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