Hello Everyone
I read related posts about FPU usage in Tiva C Series. I learned how to activate FPU but I am little confused and I want to clarify related issues.
1) Tiva has 32 Bit Single precision floating point unit. Thats why we should use sinf(), sqrtf()... functions instead of double sin(), sqrt(). Am I right ?
2) If we want to define floating number we should add `f` end of number. For example float var = 1.14213f. When I define as float var = 1.14213 variable will be `double` ?
3) Calculation time is much shorter with sinf(), sqrtf() than sin(),sqrt() ?
Regards
Serkan