Renamed UE_MEASUREMENTS_DELAY to UE_MEASUREMENT_REPORT_DELAY in LteUeRrc
This commit is contained in:
@@ -2426,7 +2426,7 @@ LteUeRrc::VarMeasReportListAdd (uint8_t measId, ConcernedCells_t enteringCells)
|
||||
NS_ASSERT (!measReportIt->second.cellsTriggeredList.empty ());
|
||||
measReportIt->second.numberOfReportsSent = 0;
|
||||
measReportIt->second.periodicReportTimer
|
||||
= Simulator::Schedule (UE_MEASUREMENTS_DELAY,
|
||||
= Simulator::Schedule (UE_MEASUREMENT_REPORT_DELAY,
|
||||
&LteUeRrc::SendMeasurementReport,
|
||||
this, measId);
|
||||
|
||||
@@ -2481,7 +2481,7 @@ LteUeRrc::VarMeasReportListErase (uint8_t measId, ConcernedCells_t leavingCells,
|
||||
|
||||
if (reportOnLeave)
|
||||
{
|
||||
// runs immediately without UE_MEASUREMENTS_DELAY
|
||||
// runs immediately without UE_MEASUREMENT_REPORT_DELAY
|
||||
SendMeasurementReport (measId);
|
||||
}
|
||||
|
||||
|
||||
@@ -53,7 +53,7 @@ namespace ns3 {
|
||||
* - time-to-trigger check is always performed before the reporting, so there
|
||||
* would still be chance for it to cancel the reporting if necessary.
|
||||
*/
|
||||
static const Time UE_MEASUREMENTS_DELAY = MicroSeconds (1);
|
||||
static const Time UE_MEASUREMENT_REPORT_DELAY = MicroSeconds (1);
|
||||
|
||||
|
||||
class LteRlc;
|
||||
|
||||
@@ -311,7 +311,7 @@ operator<< (std::vector<Time>& v, const uint64_t& ms)
|
||||
* Prior attempt to use seconds as unit of choice resulted in precision lost.
|
||||
* Therefore milliseconds are used now instead.
|
||||
*/
|
||||
v.push_back (MilliSeconds (ms) + UE_MEASUREMENTS_DELAY);
|
||||
v.push_back (MilliSeconds (ms) + UE_MEASUREMENT_REPORT_DELAY);
|
||||
return v;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user