lte: (fixes #2531) Set HARQ feedback default value to ACK to avoid false retx when only one layer (i.e., layer 0) is used in MIMO
authorZoraze Ali <zoraze.ali@cttc.es>
Thu, 03 Nov 2016 18:31:23 +0100
changeset 78 1643ab134e0d
parent 77 a40e203c4cae
child 79 3c58b63f8d98
lte: (fixes #2531) Set HARQ feedback default value to ACK to avoid false retx when only one layer (i.e., layer 0) is used in MIMO
src/lte/model/lte-spectrum-phy.cc
--- a/src/lte/model/lte-spectrum-phy.cc	Tue Oct 18 12:01:17 2016 -0700
+++ b/src/lte/model/lte-spectrum-phy.cc	Thu Nov 03 18:31:23 2016 +0100
@@ -1082,7 +1082,7 @@
                         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)