STM32F103 asinf()... math functions
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2015-08-03 2:30 AM
Posted on August 03, 2015 at 11:30
Hello,
I need to compute some values, for which I should use asinf() and sin() functions. I alreadyused math.h, but I am wondering if there exists some speed optimized library for this CPU,which can be used? #stm32f103
Labels:
- Labels:
-
STM32F1 Series
This discussion is locked. Please start a new topic to ask your question.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2015-08-03 6:42 AM
Posted on August 03, 2015 at 15:42
The math libraries linked should be efficient and targeted to your CPU. The M3 doesn't have an FPU, so no opportunity to select/deselect that. Check your tool chain documentation for additional details, and configurations. You could Google for specialized math libraries/algorithms.
Review you algorithm for other opportunities to optimize or where/when to use different levels of precision.
Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
Up vote any posts that you find helpful, it shows what's working..
