Call HARQ new tti only for the current PID

This commit is contained in:
Ismael Gomez 2021-04-08 16:23:58 +02:00
parent 82c9636156
commit c4069b58af
1 changed files with 1 additions and 3 deletions

View File

@ -340,9 +340,7 @@ void harq_entity::reset()
void harq_entity::new_tti(tti_point tti_rx)
{
last_ttis[tti_rx.to_uint() % last_ttis.size()] = tti_rx;
for (auto& hul : ul_harqs) {
hul.new_tti();
}
get_ul_harq(to_tx_ul(tti_rx))->new_tti();
for (auto& hdl : dl_harqs) {
hdl.new_tti(to_tx_dl(tti_rx));
}