From f4ae2d73aa1bba6747124d40c7046e64054980b5 Mon Sep 17 00:00:00 2001 From: Xavier Arteaga Date: Fri, 26 Mar 2021 18:11:03 +0100 Subject: [PATCH] SRSUE: report positive ACK for retx --- srsue/src/phy/nr/cc_worker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsue/src/phy/nr/cc_worker.cc b/srsue/src/phy/nr/cc_worker.cc index f24b6bd30..fadaefaca 100644 --- a/srsue/src/phy/nr/cc_worker.cc +++ b/srsue/src/phy/nr/cc_worker.cc @@ -217,7 +217,7 @@ bool cc_worker::work_dl() if (phy->get_dl_pending_grant(dl_slot_cfg.idx, pdsch_cfg, ack_resource, pid)) { // As HARQ processes are not implemented nor LDPC early-stop, retransmissions are disabled for performance reasons if (pdsch_cfg.grant.tb[0].rv != 0) { - phy->set_pending_ack(dl_slot_cfg.idx, ack_resource, false); + phy->set_pending_ack(dl_slot_cfg.idx, ack_resource, true); logger.warning("PDSCH Retransmission with rv=%d not supported", pdsch_cfg.grant.tb[0].rv); return true; }