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?
simple things like:...float x = 0.5432;...x += 0.03;or... int y = 17;x = (float)(y*1.0); // expect result 17.0...