2016-05-05 06:46 AM
Hello there,
I am trying to use some functions from the arm_math.h library. The problem I am getting undefined reference to them. The compiler sees the structs from arm_math.h correctly though. I dont know what is the cause of this. I am using STM32F4, startup code is generated via mxCUBE. I cant use arm_mat_mult_f32 for example and etc. I would apreciate all help regarding this issue.2016-05-05 09:18 AM
An include file just defines the interface for the compiler, you still have to add the objects/libraries with the code into your project for the linker to bind them.
2016-05-05 09:25 AM
Hi,
I know, I can see the c files in the project folders but for some reason couldnt link them. I had to create a new folder in eclipse and move all c files there. Thanks.