truestudio

Unable to use CMSIS library in Atollic

空扰寡人 提交于 2019-12-24 22:15:31
问题 I am trying to use CFFT function for my STM32 microcontroller in Atollic TrueStudio. But I am unable to use any of the DSP functions. I get the error - undefined reference to `arm_cfft_f32' and undefined reference to 'arm_cfft_sR_f32_len16'. I don't know what the problem is because it works on Keil. What am I doing wrong? #include "stm32f4xx.h" #include "arm_math.h" #include "arm_const_structs.h" #include "core_cm4.h" #include "math.h" #define TEST_LENGTH_SAMPLES 32 float32_t ffttestip[TEST

Import C Library in Atollic TrueStudio, STM32CubeMX

雨燕双飞 提交于 2019-12-13 00:14:32
问题 I am currently working on a STM32F767ZI-Nucleo board and a little security chip (microchip atecc508a), that is connected via i2c connection. For this chip is a library available CryptoAuthLib, that I want to use in my project. I'm also using STM32CubeMX to generate my C-Files and Atollic TrueStudio to write my implementations. C programming language is relatively new to me, so I have no idea how to include my library folder to my project (either in cubemx or in trustudio?) to get it work. I