Commit f16fe142 authored by Cedric Roux's avatar Cedric Roux

integration bugfix: phich_subframe2_pusch_subframe is wrong

calling the function for FDD case executed code for TDD case.
parent 40add2d5
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment