Skip to content

Commit

Permalink
lte: (fixes #2531) Set HARQ feedback default value to ACK to avoid fa…
Browse files Browse the repository at this point in the history
…lse retx when only one layer (i.e., layer 0) is used in MIMO
  • Loading branch information
ZorazeAli committed Nov 3, 2016
1 parent e1fd378 commit 7e17a38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lte/model/lte-spectrum-phy.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1062,7 +1062,7 @@ LteSpectrumPhy::EndRxData ()
if (itHarq==harqDlInfoMap.end ())
{
DlInfoListElement_s harqDlInfo;
harqDlInfo.m_harqStatus.resize (m_layersNum, DlInfoListElement_s::NACK);
harqDlInfo.m_harqStatus.resize (m_layersNum, DlInfoListElement_s::ACK);
harqDlInfo.m_rnti = tbId.m_rnti;
harqDlInfo.m_harqProcessId = (*itTb).second.harqProcessId;
if ((*itTb).second.corrupt)
Expand Down

0 comments on commit 7e17a38

Please sign in to comment.