Commit c0be5a12 authored by Cedric Roux's avatar Cedric Roux

integration fix: set default max MCS for UL back to 20

Doing an iperf UDP uplink test, we could reach only 6Mb/s
with very good radio conditions instead of around 8Mb/s.

It turns out the MCS was limited to 16.

With this commit, we are back to a bit more than 8Mb/s
as it used to be.

(This is with a 5MHz bandwidth.)
parent b2ac257e
...@@ -95,8 +95,8 @@ float total_slice_percentage_uplink = 0; ...@@ -95,8 +95,8 @@ float total_slice_percentage_uplink = 0;
float total_slice_percentage_current_uplink = 0; float total_slice_percentage_current_uplink = 0;
// MAX MCS for each slice for past and current time // MAX MCS for each slice for past and current time
int slice_maxmcs_uplink[MAX_NUM_SLICES] = {16, 16, 16, 16}; int slice_maxmcs_uplink[MAX_NUM_SLICES] = {20, 20, 20, 20};
int slice_maxmcs_current_uplink[MAX_NUM_SLICES] = {16,16,16,16}; int slice_maxmcs_current_uplink[MAX_NUM_SLICES] = {20,20,20,20};
/*resource blocks allowed*/ /*resource blocks allowed*/
uint16_t nb_rbs_allowed_slice_uplink[MAX_NUM_CCs][MAX_NUM_SLICES]; uint16_t nb_rbs_allowed_slice_uplink[MAX_NUM_CCs][MAX_NUM_SLICES];
......
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