Hi all,
Question about the results of msp_cmplx_fft_auto_q15. I use TI's DSPLibrary and can't seem to make sense of the results of the msp_cmplx_fft_auto_q15, which invokes LEA on MSPFR5994. Specifically, if I specify:
static DSPLIB_DATA(src1, MSP_ALIGN_CMPLX_FFT_Q15(SAMPLES)) unsigned int src1[SAMPLES * 2];
static msp_fft_q15_params params = {.length = SAMPLES};
static msp_status status;
...
uint16_t shift = 0;
for(unsigned int i = 0; i < SAMPLES * CMPLX_INCREMENT; i += CMPLX_INCREMENT) {
CMPLX_REAL(&src1[i]) = 1;
CMPLX_IMAG(&src1[i]) = 0;
}
status = msp_cmplx_fft_aut