From de5200e5e228cf58164a5bd7dbe687a4a7015fe2 Mon Sep 17 00:00:00 2001 From: mmiozzo Date: Tue, 29 Nov 2011 10:44:33 +0100 Subject: [PATCH] Update BSR periodicity in LteUeMac to 1 ms --- src/lte/model/lte-ue-mac.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lte/model/lte-ue-mac.cc b/src/lte/model/lte-ue-mac.cc index cf5431c08..55b4e80e7 100644 --- a/src/lte/model/lte-ue-mac.cc +++ b/src/lte/model/lte-ue-mac.cc @@ -407,7 +407,7 @@ void LteUeMac::DoSubframeIndication (uint32_t frameNo, uint32_t subframeNo) { NS_LOG_FUNCTION (this); - if (Simulator::Now () > m_bsrLast + m_bsrPeriodicity) + if (Simulator::Now () >= m_bsrLast + m_bsrPeriodicity) { SendReportBufferStatus (); m_bsrLast = Simulator::Now ();