Commit fa7def73 authored by aligungr's avatar aligungr

RLS developments

parent 9d361386
......@@ -93,16 +93,31 @@ struct NwGnbRlsToRls : NtsMessage
{
SIGNAL_DETECTED,
SIGNAL_LOST,
RECEIVE_RLS_MESSAGE
RECEIVE_RLS_MESSAGE,
DOWNLINK_RRC,
DOWNLINK_DATA
} present;
// SIGNAL_DETECTED
// SIGNAL_LOST
// DOWNLINK_RRC
// DOWNLINK_DATA
int ueId{};
// RECEIVE_RLS_MESSAGE
std::unique_ptr<rls::RlsMessage> msg{};
// DOWNLINK_DATA
int psi{};
// DOWNLINK_DATA
// DOWNLINK_RRC
OctetString data;
// DOWNLINK_RRC
uint32_t pduId{};
rrc::RrcChannel rrcChannel{};
explicit NwGnbRlsToRls(PR present) : NtsMessage(NtsMessageType::GNB_RLS_TO_RLS), present(present)
{
}
......
......@@ -46,6 +46,12 @@ void RlsControlTask::onLoop()
case NwGnbRlsToRls::RECEIVE_RLS_MESSAGE:
// TODO
break;
case NwGnbRlsToRls::DOWNLINK_DATA:
// TODO
break;
case NwGnbRlsToRls::DOWNLINK_RRC:
// TODO
break;
default:
m_logger->unhandledNts(msg);
break;
......
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