Skip to content
Snippets Groups Projects
Commit f16fe142 authored by Cédric Roux's avatar Cédric Roux
Browse files

integration bugfix: phich_subframe2_pusch_subframe is wrong

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