Commit 07d16106 authored by Cedric Roux's avatar Cedric Roux

quick hack to avoid a DLSCH regression

One of the optimized RE allocation function does not work properly
and generates some decoding errors with a COTS UE. Let's use the
generic function for the moment, while analyzing what is wrong.
parent 15f7ae91
...@@ -2419,6 +2419,11 @@ int dlsch_modulation(PHY_VARS_eNB* phy_vars_eNB, ...@@ -2419,6 +2419,11 @@ int dlsch_modulation(PHY_VARS_eNB* phy_vars_eNB,
allocate_REs_in_RB_no_pilots_64QAM_siso : allocate_REs_in_RB_no_pilots_64QAM_siso :
allocate_REs_in_RB; allocate_REs_in_RB;
} }
/* TODO: this is a quick hack to be removed. There is a problem
* with above code that needs to be analyzed and fixed. In the
* meantime, let's use the generic function.
*/
allocate_REs = allocate_REs_in_RB;
break; break;
} }
......
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