2021-09-02 07:15 PM
Thank you for helping.
When building with sincos ()
'sincos' was not declared in this scope
I get the error.
What should I do?
#include "math.h" is declared.
Thank you.
Solved! Go to Solution.
2021-09-02 10:14 PM
you can try with CMSIS library, there you have arm_sincos function
2021-09-02 07:36 PM
sincos is not a standard function
This may or may not work:
https://stackoverflow.com/questions/61451008/where-did-sincos-go-gcc-c
If it doesn't work, just use sin and cos separately.
2021-09-02 10:14 PM
you can try with CMSIS library, there you have arm_sincos function
2021-09-02 10:56 PM
Hi, TDK
Hi, Kanna
Thank you for your response.
I will investigate CMSIS and give it a try.
Thank you very much.