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
c2cfdfe0
Commit
c2cfdfe0
authored
May 15, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RRC developments
parent
b20f1af9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
1 deletion
+26
-1
src/ue/rrc/cells.cpp
src/ue/rrc/cells.cpp
+22
-0
src/ue/rrc/rls_sap.cpp
src/ue/rrc/rls_sap.cpp
+1
-1
src/ue/rrc/task.hpp
src/ue/rrc/task.hpp
+3
-0
No files found.
src/ue/rrc/cells.cpp
0 → 100644
View file @
c2cfdfe0
//
// This file is a part of UERANSIM open source project.
// Copyright (c) 2021 ALİ GÜNGÖR.
//
// The software and all associated files are licensed under GPL-3.0
// and subject to the terms and conditions defined in LICENSE file.
//
#include "task.hpp"
#include <lib/rrc/encode.hpp>
#include <ue/nas/task.hpp>
#include <ue/nts.hpp>
namespace
nr
::
ue
{
void
UeRrcTask
::
handleCellSignalChange
(
int
cellId
,
int
dbm
)
{
// TODO
}
}
// namespace nr::ue
src/ue/rrc/rls_sap.cpp
View file @
c2cfdfe0
...
...
@@ -20,7 +20,7 @@ void UeRrcTask::handleRlsSapMessage(NwUeRlsToRrc &msg)
switch
(
msg
.
present
)
{
case
NwUeRlsToRrc
:
:
SIGNAL_CHANGED
:
{
// TODO
handleCellSignalChange
(
msg
.
cellId
,
msg
.
dbm
);
break
;
}
case
NwUeRlsToRrc
:
:
DOWNLINK_RRC_DELIVERY
:
{
...
...
src/ue/rrc/task.hpp
View file @
c2cfdfe0
...
...
@@ -91,6 +91,9 @@ class UeRrcTask : public NtsTask
/* RLS Service Access Point */
void
handleRlsSapMessage
(
NwUeRlsToRrc
&
msg
);
/* Cell Management */
void
handleCellSignalChange
(
int
cellId
,
int
dbm
);
};
}
// namespace nr::ue
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