From f16fe1423e87dcf2388e8d3b38a819382e041541 Mon Sep 17 00:00:00 2001 From: Cedric Roux <cedric.roux@eurecom.fr> Date: Mon, 9 Jan 2017 10:11:05 +0100 Subject: [PATCH] integration bugfix: phich_subframe2_pusch_subframe is wrong calling the function for FDD case executed code for TDD case. --- openair1/PHY/LTE_TRANSPORT/phich.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openair1/PHY/LTE_TRANSPORT/phich.c b/openair1/PHY/LTE_TRANSPORT/phich.c index fd96ae306de..64daa949d15 100644 --- a/openair1/PHY/LTE_TRANSPORT/phich.c +++ b/openair1/PHY/LTE_TRANSPORT/phich.c @@ -159,7 +159,7 @@ uint8_t phich_subframe2_pusch_subframe(LTE_DL_FRAME_PARMS *frame_parms,uint8_t s uint8_t pusch_subframe = 255; if (frame_parms->frame_type == FDD) - pusch_subframe = (subframe<4 ? (subframe+6) : (subframe-4)); + return subframe < 4 ? subframe + 6 : subframe - 4; switch (frame_parms->tdd_config) { case 0: -- GitLab