Commit 5d844b4a authored by aligungr's avatar aligungr

SRA dev.

parent 98b30ebb
......@@ -67,6 +67,17 @@ void UeSraTask::onLoop()
}
break;
}
case NtsMessageType::UE_APP_TO_SRA: {
auto *w = dynamic_cast<NwUeAppToSra *>(msg);
switch (w->present)
{
case NwUeAppToSra::DATA_PDU_DELIVERY: {
deliverUplinkPdu(sra::EPduType::DATA, std::move(w->pdu), OctetString::FromOctet4(static_cast<int>(w->psi)));
break;
}
}
break;
}
case NtsMessageType::TIMER_EXPIRED: {
auto *w = dynamic_cast<NwTimerExpired *>(msg);
if (w->timerId == TIMER_ID_MEASUREMENT)
......
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