From d4e72d71288a2d8c58459f5fa4aae5b509395758 Mon Sep 17 00:00:00 2001 From: yagoda Date: Tue, 15 Jan 2019 10:56:26 +0100 Subject: [PATCH] small change to eMBMS channel estimation --- lib/src/phy/ch_estimation/chest_dl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/phy/ch_estimation/chest_dl.c b/lib/src/phy/ch_estimation/chest_dl.c index b7324a137..773fa8a8e 100644 --- a/lib/src/phy/ch_estimation/chest_dl.c +++ b/lib/src/phy/ch_estimation/chest_dl.c @@ -390,7 +390,7 @@ static void interpolate_pilots(srslte_chest_dl_t *q, cf_t *pilot_estimates, cf_t fidx_offset = srslte_refsignal_mbsfn_fidx(l - 1); srslte_interp_linear_offset(&q->srslte_interp_lin_mbsfn, &pilot_estimates[(2*q->cell.nof_prb) + 6*q->cell.nof_prb*(l - 1)], &ce[srslte_refsignal_mbsfn_nsymbol(l - 1) * q->cell.nof_prb * SRSLTE_NRE], - fidx_offset, SRSLTE_NRE/6-fidx_offset); + fidx_offset, (fidx_offset)?1:2); } } else {