Commit d71d6d97 authored by aligungr's avatar aligungr

L3 RRC/NAS developments

parent ac4a0f28
......@@ -331,7 +331,7 @@ void NasMm::handleRrcFallbackIndication()
}
bool pendingProc = hasPendingProcedure();
bool pendingData = m_sm->anyUplinkDataPending(); // TODO: look for only resources are already established (5.3.1.2)
bool pendingData = m_sm->anyUplinkDataPending();
switchCmState(ECmState::CM_IDLE);
......
......@@ -72,6 +72,8 @@ void NasSm::handleUplinkStatusChange(int psi, bool isPending)
bool NasSm::anyUplinkDataPending()
{
// TODO: look for only resources are already established etc
auto status = getUplinkDataStatus();
for (int i = 1; i < 16; i++)
if (status[i])
......
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