Tool/software:
I got the following warning:
#3195-D (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
Here is my code:
b += sprintf( b, " readback: %f\r\n", getTarget() );
and the here is the called function
float32_t getTarget(void);
The warning disappear only writing a constant link here
b += sprintf( b, " readback: %f\r\n", 3.5f );
I am using
Code Composer Studio
Version: 12.8.1.00005
and the default setting (fpu32)
What can I do?
Thank you in advance