2019-02-04 11:52 AM
simple things like:
...
float x = 0.5432;
...
x += 0.03;
or
...
int y = 17;
x = (float)(y*1.0); // expect result 17.0
...
2019-02-05 11:59 AM
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.