Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
UERANSIM
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
Libraries
UERANSIM
Commits
ff47264a
Commit
ff47264a
authored
May 17, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RRC developments
parent
a7c632b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
7 deletions
+22
-7
src/ue/rrc/idle.cpp
src/ue/rrc/idle.cpp
+22
-7
No files found.
src/ue/rrc/idle.cpp
View file @
ff47264a
...
...
@@ -29,18 +29,33 @@ void UeRrcTask::performCellSelection()
if
(
!
lookForSuitableCell
(
cellInfo
,
report
))
{
m_logger
->
warn
(
"Suitable cell selection failed in [%d] cells. [%d] out of PLMN, [%d] no SI, [%d] reserved, [%d] barred"
,
static_cast
<
int
>
(
m_cellDesc
.
size
()),
report
.
outOfPlmnCells
,
report
.
sib1MissingCells
,
report
.
reservedCells
,
report
.
barredCells
);
if
(
!
m_cellDesc
.
empty
())
{
m_logger
->
warn
(
"Suitable cell selection failed in [%d] cells. [%d] out of PLMN, [%d] no SI, [%d] reserved, "
"[%d] barred"
,
static_cast
<
int
>
(
m_cellDesc
.
size
()),
report
.
outOfPlmnCells
,
report
.
sib1MissingCells
,
report
.
reservedCells
,
report
.
barredCells
);
}
else
{
m_logger
->
warn
(
"Suitable cell selection failed, no cell is in coverage"
);
}
report
=
{};
if
(
!
lookForAcceptableCell
(
cellInfo
,
report
))
{
m_logger
->
warn
(
"Acceptable cell selection failed in [%d] cells. [%d] no SI, [%d] reserved, [%d] barred"
,
static_cast
<
int
>
(
m_cellDesc
.
size
()),
report
.
sib1MissingCells
,
report
.
reservedCells
,
report
.
barredCells
);
if
(
!
m_cellDesc
.
empty
())
{
m_logger
->
warn
(
"Acceptable cell selection failed in [%d] cells. [%d] no SI, [%d] reserved, [%d] barred"
,
static_cast
<
int
>
(
m_cellDesc
.
size
()),
report
.
sib1MissingCells
,
report
.
reservedCells
,
report
.
barredCells
);
}
else
{
m_logger
->
warn
(
"Acceptable cell selection failed, no cell is in coverage"
);
}
m_logger
->
err
(
"Cell selection failure, no suitable or acceptable cell found"
);
}
}
...
...
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