cancel
Showing results for 
Search instead for 
Did you mean: 

I must port code from stm32f100/200 over to stm32l05x, code has lots of fp calcs, is there software fp instruction support for l05x series?

ThePUP
Associate III

simple things like:

...

float x = 0.5432;

...

x += 0.03;

or

...

int y = 17;

x = (float)(y*1.0); // expect result 17.0

...

1 REPLY 1
ThePUP
Associate III

Answering my own question 24h later, to conclude for anyone who might wonder as well.

short answer: yes it does.

Longer: got the project going enough to build a .bin that I could code into. Result seems to be supporting only float (32bit) as far as I can determine. Library / code generator seems to do fine on the L051, and I don't need double-prec., so I'm good to go.