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
3a1d5581
Commit
3a1d5581
authored
Apr 03, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UE SAS dev.
parent
9f17fa9c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
src/ue/sas/connection.cpp
src/ue/sas/connection.cpp
+1
-1
src/ue/sas/task.cpp
src/ue/sas/task.cpp
+1
-1
src/ue/sas/task.hpp
src/ue/sas/task.hpp
+1
-1
No files found.
src/ue/sas/connection.cpp
View file @
3a1d5581
...
...
@@ -14,7 +14,7 @@
namespace
nr
::
ue
{
void
UeSasTask
::
receiv
eCellSelectionCommand
(
const
GlobalNci
&
cellId
,
bool
isSuitable
)
void
UeSasTask
::
handl
eCellSelectionCommand
(
const
GlobalNci
&
cellId
,
bool
isSuitable
)
{
m_logger
->
err
(
"TODO"
);
// TODO perform camp
}
...
...
src/ue/sas/task.cpp
View file @
3a1d5581
...
...
@@ -52,7 +52,7 @@ void UeSasTask::onLoop()
if
(
w
->
present
==
NwUeRrcToSas
::
PLMN_SEARCH_REQUEST
)
plmnSearchRequested
();
else
if
(
w
->
present
==
NwUeRrcToSas
::
CELL_SELECTION_COMMAND
)
receiv
eCellSelectionCommand
(
w
->
cellId
,
w
->
isSuitableCell
);
handl
eCellSelectionCommand
(
w
->
cellId
,
w
->
isSuitableCell
);
break
;
}
case
NtsMessageType
:
:
TIMER_EXPIRED
:
{
...
...
src/ue/sas/task.hpp
View file @
3a1d5581
...
...
@@ -55,7 +55,7 @@ class UeSasTask : public NtsTask
void
plmnSearchRequested
();
private:
/* Connection */
void
receiv
eCellSelectionCommand
(
const
GlobalNci
&
cellId
,
bool
isSuitable
);
void
handl
eCellSelectionCommand
(
const
GlobalNci
&
cellId
,
bool
isSuitable
);
};
}
// namespace nr::ue
\ No newline at end of file
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