Hello team,
I am working on 5G NR LENA (ns3.45) module. I want to receive the RSRP value and SINR values, I am using the traces: uePhy->TraceConnectWithoutContext(
// "ReportCurrentCellRsrpSinr",
// MakeCallback(&ReportRsrpSinr));
and the callback : static void
// ReportRsrpSinr(uint16_t cellId,
// uint16_t rnti,
// double rsrp,
// double sinr,
// uint8_t componentCarrierId)
// {
// std::cout << "*** RSRP CALLBACK FIRED *** "
// << "Time=" << Simulator::Now().GetSeconds()
// << " CellId=" << cellId
// << " RNTI=" << rnti
// << " RSRP=" << rsrp
// << " dBm"
// << " SINR=" << sinr
// << " dB"
// << " CC=" << (uint32_t)componentCarrierId
// << std::endl;
// }
But it is not returning value for some reason. Can you please help me out on this.
Regards,
Anjali