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
caa925d5
Commit
caa925d5
authored
May 23, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
L3 RRC/NAS developments
parent
8975bd85
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
0 deletions
+13
-0
src/ue/nas/mm/base.cpp
src/ue/nas/mm/base.cpp
+2
-0
src/ue/nas/mm/ecall.cpp
src/ue/nas/mm/ecall.cpp
+4
-0
src/ue/nas/mm/radio.cpp
src/ue/nas/mm/radio.cpp
+6
-0
src/ue/types.hpp
src/ue/types.hpp
+1
-0
No files found.
src/ue/nas/mm/base.cpp
View file @
caa925d5
...
...
@@ -470,6 +470,8 @@ void NasMm::onSimRemoval()
m_storage
->
forbiddenTaiListRoaming
->
clear
();
m_storage
->
forbiddenTaiListRps
->
clear
();
switchMmState
(
EMmSubState
::
MM_DEREGISTERED_PS
);
}
}
// namespace nr::ue
src/ue/nas/mm/ecall.cpp
View file @
caa925d5
...
...
@@ -27,6 +27,10 @@ bool NasMm::startECallInactivityIfNeeded()
if
(
!
m_usim
->
m_isECallOnly
)
return
false
;
// "5.2.2.3.7 The UE camps on a suitable cell or an acceptable cell in a PLMN selected as specified in 3GPP ..."
if
(
!
m_base
->
shCtx
.
hasActiveCell
())
return
false
;
// The procedure shall be started when
// a) the UE is in any 5GMM-REGISTERED substate except substates 5GMM-REGISTERED.PLMN-SEARCH or
// 5GMM-REGISTERED.NO-CELL-AVAILABLE;"
...
...
src/ue/nas/mm/radio.cpp
View file @
caa925d5
...
...
@@ -275,6 +275,12 @@ void NasMm::handlePaging(const std::vector<GutiMobileIdentity> &tmsiIds)
if
(
!
tmsiMatches
)
return
;
if
(
m_mmSubState
==
EMmSubState
::
MM_DEREGISTERED_ECALL_INACTIVE
)
{
m_logger
->
debug
(
"Ignoring received Paging due to eCall inactive"
);
return
;
}
m_timers
->
t3346
.
stop
();
if
(
m_mmState
==
EMmState
::
MM_REGISTERED_INITIATED
||
m_mmState
==
EMmState
::
MM_DEREGISTERED_INITIATED
||
...
...
src/ue/types.hpp
View file @
caa925d5
...
...
@@ -171,6 +171,7 @@ struct UeSharedContext
Plmn
getCurrentPlmn
();
Tai
getCurrentTai
();
bool
hasActiveCell
();
};
struct
TaskBase
...
...
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