I am calculating some FFTs with the F28335 using single precision floating point. The problem is, the F28335 should have enough RAM (68KB) to calculate up to a 8192 point FFT (easily). Just testing the compiler, I globally declared a float array and it fails the build (not enough ram error) at around 2000 elements in the array. Can I dynamically allocate the ram and it'll be OK? Do I have some compiler settings or link files configured wrong? I appreciate the help, thanks!
Mike