SRSENB: Minor RAR RNTI fix

This commit is contained in:
Xavier Arteaga 2020-03-03 16:01:06 +01:00 committed by Xavier Arteaga
parent 02dd5bd8c4
commit 8eb96747ab
1 changed files with 2 additions and 2 deletions

View File

@ -133,8 +133,8 @@ void cc_worker::init(phy_common* phy_, srslte::log* log_h_, uint32_t cc_idx_)
add_rnti(SRSLTE_PRNTI, false, false); add_rnti(SRSLTE_PRNTI, false, false);
/* Setup RA-RNTI in PHY */ /* Setup RA-RNTI in PHY */
for (int i = 0; i < SRSLTE_CRNTI_START; i++) { for (int i = SRSLTE_RARNTI_START; i <= SRSLTE_RARNTI_END; i++) {
add_rnti(1 + i, false, false); add_rnti(i, false, false);
} }
if (srslte_softbuffer_tx_init(&temp_mbsfn_softbuffer, nof_prb)) { if (srslte_softbuffer_tx_init(&temp_mbsfn_softbuffer, nof_prb)) {