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
9f667342
Commit
9f667342
authored
May 21, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
L3 RRC/NAS developments
parent
08e7344a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3 additions
and
8 deletions
+3
-8
src/ue/nas/mm/interface.cpp
src/ue/nas/mm/interface.cpp
+1
-1
src/ue/nas/mm/mm.hpp
src/ue/nas/mm/mm.hpp
+1
-1
src/ue/nas/mm/radio.cpp
src/ue/nas/mm/radio.cpp
+1
-1
src/ue/nts.hpp
src/ue/nts.hpp
+0
-3
src/ue/rrc/idle.cpp
src/ue/rrc/idle.cpp
+0
-2
No files found.
src/ue/nas/mm/interface.cpp
View file @
9f667342
...
...
@@ -47,7 +47,7 @@ void NasMm::handleRrcEvent(const NwUeRrcToNas &msg)
break
;
}
case
NwUeRrcToNas
:
:
ACTIVE_CELL_CHANGED
:
{
handleActiveCellChange
(
msg
.
lastTai
);
handleActiveCellChange
();
break
;
}
}
...
...
src/ue/nas/mm/mm.hpp
View file @
9f667342
...
...
@@ -161,7 +161,7 @@ class NasMm
private:
/* Radio */
void
performPlmnSelection
();
void
localReleaseConnection
();
void
handleActiveCellChange
(
const
Tai
&
lastTai
);
void
handleActiveCellChange
();
void
handleRrcConnectionSetup
();
void
handleRrcConnectionRelease
();
void
handleRadioLinkFailure
();
...
...
src/ue/nas/mm/radio.cpp
View file @
9f667342
...
...
@@ -142,7 +142,7 @@ void NasMm::performPlmnSelection()
}
}
void
NasMm
::
handleActiveCellChange
(
const
Tai
&
lastTai
)
void
NasMm
::
handleActiveCellChange
()
{
if
(
m_cmState
==
ECmState
::
CM_CONNECTED
)
{
...
...
src/ue/nts.hpp
View file @
9f667342
...
...
@@ -79,9 +79,6 @@ struct NwUeRrcToNas : NtsMessage
// PAGING
std
::
vector
<
GutiMobileIdentity
>
pagingTmsi
;
// ACTIVE_CELL_CHANGED
Tai
lastTai
;
explicit
NwUeRrcToNas
(
PR
present
)
:
NtsMessage
(
NtsMessageType
::
UE_RRC_TO_NAS
),
present
(
present
)
{
}
...
...
src/ue/rrc/idle.cpp
View file @
9f667342
...
...
@@ -28,7 +28,6 @@ void UeRrcTask::performCellSelection()
return
;
int
lastCell
=
m_base
->
shCtx
.
currentCell
.
get
<
int
>
([](
auto
&
value
)
{
return
value
.
cellId
;
});
Tai
lastTai
=
m_base
->
shCtx
.
getCurrentTai
();
bool
shouldLogErrors
=
lastCell
!=
0
||
(
currentTime
-
m_lastTimePlmnSearchFailureLogged
>=
30'000LL
);
...
...
@@ -104,7 +103,6 @@ void UeRrcTask::performCellSelection()
m_base
->
rlsTask
->
push
(
w1
);
auto
w2
=
new
NwUeRrcToNas
(
NwUeRrcToNas
::
ACTIVE_CELL_CHANGED
);
w2
->
lastTai
=
lastTai
;
m_base
->
nasTask
->
push
(
w2
);
}
}
...
...
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