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
8e58ef2c
Commit
8e58ef2c
authored
May 11, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RLS improvements
parent
fa549ca5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
src/ue/rls/ctl_task.cpp
src/ue/rls/ctl_task.cpp
+6
-0
src/ue/rls/ctl_task.hpp
src/ue/rls/ctl_task.hpp
+2
-2
No files found.
src/ue/rls/ctl_task.cpp
View file @
8e58ef2c
...
...
@@ -43,6 +43,12 @@ void RlsControlTask::onLoop()
case
NwUeRlsToRls
:
:
RECEIVE_RLS_MESSAGE
:
handleRlsMessage
(
w
->
cellId
,
*
w
->
msg
);
break
;
case
NwUeRlsToRls
:
:
UPLINK_DATA
:
handleUplinkDataDelivery
(
w
->
cellId
,
w
->
psi
,
std
::
move
(
w
->
data
));
break
;
case
NwUeRlsToRls
:
:
UPLINK_RRC
:
handleUplinkRrcDelivery
(
w
->
cellId
,
w
->
pduId
,
w
->
rrcChannel
,
std
::
move
(
w
->
data
));
break
;
default:
m_logger
->
unhandledNts
(
msg
);
break
;
...
...
src/ue/rls/ctl_task.hpp
View file @
8e58ef2c
...
...
@@ -39,8 +39,8 @@ class RlsControlTask : public NtsTask
private:
/* Service Access Point */
void
handleRlsMessage
(
int
cellId
,
rls
::
RlsMessage
&
msg
);
void
handleSignalChange
(
int
cellId
,
int
dbm
);
void
handleRrcDelivery
(
int
cellId
,
uint32_t
pduId
,
rrc
::
RrcChannel
channel
,
OctetString
&&
data
);
void
handleDataDelivery
(
int
cellId
,
int
psi
,
OctetString
&&
data
);
void
handle
Uplink
RrcDelivery
(
int
cellId
,
uint32_t
pduId
,
rrc
::
RrcChannel
channel
,
OctetString
&&
data
);
void
handle
Uplink
DataDelivery
(
int
cellId
,
int
psi
,
OctetString
&&
data
);
};
}
// 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