From 7ae10a085bd7f1998d0bc366f079efe6baf23a85 Mon Sep 17 00:00:00 2001 From: Budiarto Herman Date: Wed, 3 Jul 2013 15:40:08 +0300 Subject: [PATCH] Clarification comments on LTE SI transmission schedule --- src/lte/model/lte-enb-rrc.cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/lte/model/lte-enb-rrc.cc b/src/lte/model/lte-enb-rrc.cc index 8bf71d5ad..62b616f6d 100644 --- a/src/lte/model/lte-enb-rrc.cc +++ b/src/lte/model/lte-enb-rrc.cc @@ -1657,7 +1657,12 @@ LteEnbRrc::ConfigureCell (uint8_t ulBandwidth, uint8_t dlBandwidth, mib.dlBandwidth = m_dlBandwidth; m_cphySapProvider->SetMasterInformationBlock (mib); - // Enabling SIB transmission. The first time System Information is sent. + /* + * Enabling SIB transmission. The first time System Information is transmitted + * is arbitrarily assumed to be at +0.016s, and then it will be regularly + * transmitted every 80 ms by default (set the SystemInformationPeriodicity + * attribute to configure this). + */ Simulator::Schedule (MilliSeconds (16), &LteEnbRrc::SendSystemInformation, this); m_configured = true;