Hello!
When I "Step Over" the instruction y=sin(x) in CCS debug mode, it takes around 5 secs for the CCS to update the value of variable y. Does the MCU really take such long time to execute such trigonometric functions?
Note: I measured the time with hand stop watch.
Relevant code lines are given below
#include <math.h>
float32_t x=10;
float32_t y=0;
y=sin(x);