Update BSR periodicity in LteUeMac to 1 ms

This commit is contained in:
mmiozzo
2011-11-29 10:44:33 +01:00
parent c4a84293d0
commit de5200e5e2

View File

@@ -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 ();