Commit 19059d14 authored by aligungr's avatar aligungr

UE SAS refactor

parent eab12cc8
......@@ -15,12 +15,6 @@ namespace nr::ue
{
void UeSasTask::onMeasurement()
{
evaluatePendingMeasurements();
requestCellInfo();
}
void UeSasTask::evaluatePendingMeasurements()
{
std::vector<GlobalNci> entered{};
std::vector<GlobalNci> exited{};
......@@ -51,10 +45,8 @@ void UeSasTask::evaluatePendingMeasurements()
m_activeMeasurements = m_pendingMeasurements;
// clear pending measurements
m_pendingMeasurements = {};
}
void UeSasTask::requestCellInfo()
{
// Issue another cell info request for search space
for (auto &ip : m_cellSearchSpace)
{
sas::SasCellInfoRequest req{};
......
......@@ -50,8 +50,6 @@ class UeSasTask : public NtsTask
private: /* Measurement */
void onMeasurement();
void evaluatePendingMeasurements();
void requestCellInfo();
void receiveCellInfoResponse(const sas::SasCellInfoResponse &msg);
void onCoverageChange(const std::vector<GlobalNci> &entered, const std::vector<GlobalNci> &exited);
};
......
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