Commit 2f54d450 authored by aligungr's avatar aligungr

RRC developments

parent fd503925
......@@ -46,6 +46,10 @@ void NasMm::handleRrcEvent(const NwUeRrcToNas &msg)
handlePaging(msg.pagingTmsi);
break;
}
case NwUeRrcToNas::NAS_NOTIFY: {
triggerMmCycle();
break;
}
}
}
......
......@@ -70,6 +70,7 @@ struct NwUeRrcToNas : NtsMessage
RADIO_LINK_FAILURE,
SERVING_CELL_CHANGE,
PAGING,
NAS_NOTIFY,
} present;
// NAS_DELIVERY
......
......@@ -71,6 +71,8 @@ void UeRrcTask::updateAvailablePlmns()
if (cellDesc.second.sib1.hasSib1)
value.insert(cellDesc.second.sib1.plmn);
});
m_base->nasTask->push(new NwUeRrcToNas(NwUeRrcToNas::NAS_NOTIFY));
}
} // namespace nr::ue
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