2018-12-25 02:54 PM
i am searching but i could not find it yet , only pdf...
Where is STM32F10x DSP Library ?
Solved! Go to Solution.
2018-12-26 09:53 AM
The demo, or your application of it? If you have large arrays you might need to shrink those, or review the .MAP to understand the usage.
I think this is the F1 DSP V2.0.0 release
https://drive.google.com/open?id=0B7OY5pub_GfIOGZuTFVRWXdpemM
2018-12-25 04:05 PM
At this point I'd expect there to be DSP libraries under the CMSIS directories.
Probably have old copies archived.
2018-12-25 06:49 PM
CMSIS REALFFT does not fit in stm32f103c8 , it requires some how >70Kbyte ram .
2018-12-26 09:53 AM
The demo, or your application of it? If you have large arrays you might need to shrink those, or review the .MAP to understand the usage.
I think this is the F1 DSP V2.0.0 release
https://drive.google.com/open?id=0B7OY5pub_GfIOGZuTFVRWXdpemM
2018-12-26 10:52 AM
thank you very much for installation !!.
actually i dont define any array ,
if i use this function in my application , it directly gives error related no rom/ram space.
if i change device with 512kb memory it does not gives any error.
arm_statusarm_rfft_fast_init_f32 (arm_rfft_fast_instance_f32 *S, uint16_t fftLen);
only this function requires more than 70kb memory...
2018-12-26 10:54 AM
Are you using GNU/GCC based tools?
Seems like a lot of code, can't say the F1 and DSP is on my radar here.
2018-12-26 10:57 AM
i am using keil mdk 5.xx even with L3 optimization this function eats up so much resource, i dont know why. Just i know if i choose bigger mcu it does not gives any single error. Now i will try the library that you shared.