Hey,
I am trying to perform FFT on a test data that is externally loaded from a binary file (in 32-bit float format) to the input buffer address. I am using TMDSEVM6678LE EVM with CCSv8. This is my main function:
gen_twiddle_fft_sp(w_32x32, N); /* Call FFT routine */ DSPF_sp_fftSPxSP_r2c(N, x_ref, w_32x32, y_32x32, brev, 4, 0, N); /* Call the test code to seperate the real and imaginary data */ seperateRealImg ();
I want to load data in the x_ref[] buffer of length 1024. When I go to memory browser to load data at specific address, as I load from bin file the data comes at the address but then error appears which shows:
"Break at address "0x810000" with no debug information available, or outside of program code."
I am attaching a screenshot of the CCS debug window just after data is loaded.
Note that the data loaded at the address is correct. Only due to the error shown below besides the memory view.
Regards,