From a6f3de6043c3cdfe4d15a8edb587fbb43b423ce4 Mon Sep 17 00:00:00 2001 From: Biljana Bojovic Date: Wed, 26 Jun 2013 18:42:17 +0200 Subject: [PATCH] fixed error when setting up the bandwidth value to 6 in LTE module --- src/lte/model/lte-ue-phy.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lte/model/lte-ue-phy.cc b/src/lte/model/lte-ue-phy.cc index 41625b477..67cdc382f 100644 --- a/src/lte/model/lte-ue-phy.cc +++ b/src/lte/model/lte-ue-phy.cc @@ -1030,7 +1030,7 @@ void LteUePhy::DoSetDlBandwidth (uint8_t dlBandwidth) { NS_LOG_FUNCTION (this << (uint32_t) dlBandwidth); - if (m_dlBandwidth != dlBandwidth) + if (m_dlBandwidth != dlBandwidth or !m_dlConfigured) { m_dlBandwidth = dlBandwidth;