Commit 57cccd63 authored by Rúben Soares Silva's avatar Rúben Soares Silva

Correctly cast qam64_qam64 parameters in dlsch_llr_computation.c

Change call to qam64_qam64 to use (short *) parameters as defined in the function declaration
parent b46e20ab
......@@ -8010,12 +8010,12 @@ int dlsch_64qam_64qam_llr(LTE_DL_FRAME_PARMS *frame_parms,
(int32_t *) rho_256i,
len);
#else // defined(__arm__) || defined(__aarch64__)
qam64_qam64((int32_t *)rxF_256i,
(int32_t *)rxF_i_256i,
(int32_t *)ch_mag_256i,
(int32_t *)ch_mag_i_256i,
(int16_t *)llr16,
(int32_t *) rho_256i,
qam64_qam64((short *)rxF_256i,
(short *)rxF_i_256i,
(short *)ch_mag_256i,
(short *)ch_mag_i_256i,
(short *)llr16,
(short *) rho_256i,
len);
#endif
......
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