Change PUCCH fake signal in LteUePhy from full bandwidth to null bandwidth

This commit is contained in:
mmiozzo
2012-10-03 14:23:41 +02:00
parent 9241d89dc1
commit 904ec5856d

View File

@@ -640,14 +640,10 @@ LteUePhy::SubframeIndication (uint32_t frameNo, uint32_t subframeNo)
}
else
{
// send only PUCCH (ideal: fake full bandwidth signal)
// send only PUCCH (ideal: fake null bandwidth signal)
if (ctrlMsg.size ()>0)
{
std::vector <int> dlRb;
for (uint8_t i = 0; i < m_ulBandwidth; i++)
{
dlRb.push_back (i);
}
SetSubChannelsForTransmission (dlRb);
m_uplinkSpectrumPhy->StartTxDataFrame (pb, ctrlMsg, UL_DATA_DURATION);
}