After building project, to import the application software. EDK give me this error: undefined reference to `FXMUL32'
Because that,I have defined in my Sw file
#define FXMUL32(a,b,DW) ((int32)(((((int64)((int32)(a))*(int64)((int32)(
this is the definition from co_math.h file . Also include co_math and co_types in SW.
Then EDK give me :
In function 'software_fir' 'int64' undeclared (first use in this function)(Each undeclared identifier is reported only once for each function it appears in.)expected ')' before numeric constant.
Later, I use this definition and no error returned:
#define FXMUL32(a,b,DW) ((int32)((((((int32)(a))*((int32)(
I'm only using the co_int32 type, Is it a correct operation?
Regards
Jorge












