Commit 08bad7cf authored by Lionel Gauthier's avatar Lionel Gauthier

Sebastian Held patches15/0033-fix-uninitialized-value-warning.patch

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@7335 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent eedadfda
......@@ -2152,10 +2152,10 @@ void dlsch_channel_compensation_TM3(LTE_DL_FRAME_PARMS *frame_parms,
rxdataF_comp1_128+=2;
}
Nre = (pilots==0) ? 12 : 8;
} // rb loop
Nre = (pilots==0) ? 12 : 8;
} // rb loop
precoded_signal_strength0 += ((signal_energy_nodc(&dl_ch_estimates_ext[aarx][symbol*frame_parms->N_RB_DL*Nre],
(nb_rb*Nre))*rx_power_correction) - (phy_measurements->n0_power[aarx]));
......
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