Question
STM32L476 nucleo and Truestudio , how to force Truestudio to use the FPU?
Hello,
I have the following basic code calls every 20msec.
double test = 2.80009;
TESTA11_ON;
for (i=0; i < 500; i++)
{
test *= test;
}
TESTA11_OFF;When I compile and link with or without the FPU I always have the same processing time and current consumption.
Here below are the two Truestudio configurations:
With FPU set in Assembler, Compiler and Linker target:

Without FPU set in Assembler, Compiler and Linker target:

What am I wrong?
Why does these options have no effect?
How can I force the FPU usage?
Best regards
Mich