Commit 3a1d5581 authored by aligungr's avatar aligungr

UE SAS dev.

parent 9f17fa9c
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
namespace nr::ue namespace nr::ue
{ {
void UeSasTask::receiveCellSelectionCommand(const GlobalNci &cellId, bool isSuitable) void UeSasTask::handleCellSelectionCommand(const GlobalNci &cellId, bool isSuitable)
{ {
m_logger->err("TODO"); // TODO perform camp m_logger->err("TODO"); // TODO perform camp
} }
......
...@@ -52,7 +52,7 @@ void UeSasTask::onLoop() ...@@ -52,7 +52,7 @@ void UeSasTask::onLoop()
if (w->present == NwUeRrcToSas::PLMN_SEARCH_REQUEST) if (w->present == NwUeRrcToSas::PLMN_SEARCH_REQUEST)
plmnSearchRequested(); plmnSearchRequested();
else if (w->present == NwUeRrcToSas::CELL_SELECTION_COMMAND) else if (w->present == NwUeRrcToSas::CELL_SELECTION_COMMAND)
receiveCellSelectionCommand(w->cellId, w->isSuitableCell); handleCellSelectionCommand(w->cellId, w->isSuitableCell);
break; break;
} }
case NtsMessageType::TIMER_EXPIRED: { case NtsMessageType::TIMER_EXPIRED: {
......
...@@ -55,7 +55,7 @@ class UeSasTask : public NtsTask ...@@ -55,7 +55,7 @@ class UeSasTask : public NtsTask
void plmnSearchRequested(); void plmnSearchRequested();
private: /* Connection */ private: /* Connection */
void receiveCellSelectionCommand(const GlobalNci &cellId, bool isSuitable); void handleCellSelectionCommand(const GlobalNci &cellId, bool isSuitable);
}; };
} // namespace nr::ue } // namespace nr::ue
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment