Hi,
I just want to run some CMSIS DSP routines in TCM RAM (ITCM/DTCM) on my iMX RT1064, so that they run at the fastest speed. However, It is not necessary that initialization functions run at full speed and they could run from Flash.
Example:
arm_fir_init_f32 function running from Flash
arm_fir_f32 function running from ITCM
What is the best way to do it?
and what about data buffers and coefficients, etc.? Should they be placed in DTCM?
Thanks!