fix PCCH assembly in srsenb rrc

This commit is contained in:
Francisco 2021-05-14 16:05:58 +01:00 committed by Francisco Paisana
parent a841b7580e
commit f25dbea4de
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ bool paging_manager::read_pdu_pcch(tti_point tti_tx_dl, const Callable& func)
}
// Call callable for existing PCCH pdu
if (func(*pending_pcch->pdu, pending_pcch->pcch_msg, pending_pcch->tti_tx_dl.is_valid())) {
if (func(*pending_pcch->pdu, pending_pcch->pcch_msg, not pending_pcch->is_tx())) {
pending_pcch->tti_tx_dl = tti_tx_dl;
return true;
}