2014-06-12 09:22 AM
Hello,
I am using the STm32F4 discovery demo board and using the IAR IDE tool chain, Can anyone tell me how to use(enable) the Floating Point unit.Thanks for ur help.RegardsSameer2014-06-12 12:38 PM
1. Project->options
2. general options in the left menu 3.''Target'' tab contain FPU dropdown seleciton list2014-06-12 01:24 PM
Remember the FPU only does 32-bit float math, it does not support 64-bit double, or complex functions. Be sure to use the float version of math functions, like sqrtf(), sinf(), cosf(), etc. and constants like 123.4f