Compiler flags are here you can perhaps make it conditional based on board name, those with nrf52832 can have cortex M4/FPU enabled. Also I enabled C preprocessor by removing -fpreprocessed which you have turned off for some reason (security because of #include running on server ?)
and with the FPU errata fix you added recently this is even more painless since you don't need to clear that in inline C code now
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Compiler flags are here you can perhaps make it conditional based on board name, those with nrf52832 can have cortex M4/FPU enabled. Also I enabled C preprocessor by removing
-fpreprocessed
which you have turned off for some reason (security because of #include running on server ?)and with the FPU errata fix you added recently this is even more painless since you don't need to clear that in inline C code now