SRSENB: calculate TA from PUCCH messages

This commit is contained in:
Xavier Arteaga 2020-07-29 13:17:47 +02:00 committed by Xavier Arteaga
parent fca1273b3e
commit bc0aba0d8a
1 changed files with 6 additions and 0 deletions

View File

@ -214,6 +214,12 @@ static int get_pucch(srslte_enb_ul_t* q, srslte_ul_sf_cfg_t* ul_sf, srslte_pucch
return SRSLTE_ERROR;
}
// Copy measurements
if (cfg->meas_ta_en) {
pucch_res.ta_valid = !(isnan(q->chest_res.ta_us) || isinf(q->chest_res.ta_us));
pucch_res.ta_us = q->chest_res.ta_us;
}
ret = srslte_pucch_decode(&q->pucch, ul_sf, cfg, &q->chest_res, q->sf_symbols, &pucch_res);
if (ret < SRSLTE_SUCCESS) {
ERROR("Error decoding PUCCH\n");