This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

32 bit microcontroller

Need suggestions on the best 32 bit microcontroller.
I need to select a suitable microcontroller which can support more than 3 digits floating point accuracy.

Adam

Parents
  • All 32-bit uC can manage that. A more important question is how many fp instructions/s you need to crunch. That affects if you need hardware FP or if emulation is ok.

    Another thing: You say 3 digits. I assume you mean 3 decimal digits. 1.23e7. That is a puny precision. That is way less than the 32-bit IEEE single-precision FP.

    With so little precision, you may not even need FP but may look into 32-bit fixed-point numbers.

Reply
  • All 32-bit uC can manage that. A more important question is how many fp instructions/s you need to crunch. That affects if you need hardware FP or if emulation is ok.

    Another thing: You say 3 digits. I assume you mean 3 decimal digits. 1.23e7. That is a puny precision. That is way less than the 32-bit IEEE single-precision FP.

    With so little precision, you may not even need FP but may look into 32-bit fixed-point numbers.

Children