Hi,
I am having problem with the C6747/48 dsp fft library. I am using code generation v6.1.10 and cc v3.3.83.19
The output buffer is corrupted unless I have a printf or LOG_printf statement preceding it.
LOG_printf(" Why do I need this????\r\n");
DSPF_sp_ifftSPxSP_c(S_256,ptrBufIn,ptr_w,ptrBufOut,brev,4,0,S_256);
I did try aligning both of my input and output data with this statement
#pragma DATA_ALIGN (ptrBufIn,2*S_256)
#pragma DATA_ALIGN (ptrBufOut,2*S_256)
But it still doesn't work. What does the printf do to my data that help the dsp call ?
Thanks.