From 238fe2cccf6d081b186e1fe8ee359913e84d7969 Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Tue, 6 Jun 2017 18:51:45 +0300 Subject: [PATCH] lte: Set Cell ID for ComponentCarrierEnb --- src/lte/helper/lte-helper.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lte/helper/lte-helper.cc b/src/lte/helper/lte-helper.cc index eaef6fabf..f4deab502 100644 --- a/src/lte/helper/lte-helper.cc +++ b/src/lte/helper/lte-helper.cc @@ -536,6 +536,7 @@ LteHelper::InstallSingleEnbDevice (Ptr n) cc->SetDlEarfcn(it->second.GetDlEarfcn()); cc->SetUlEarfcn(it->second.GetUlEarfcn()); cc->SetAsPrimary(it->second.IsPrimary()); + cc->SetCellId (cellId); ccMap [it->first] = cc; } NS_ABORT_MSG_IF (m_useCa && ccMap.size()<2, "You have to either specify carriers or disable carrier aggregation");