This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hello,
I am trying to test the trigonometric function using EZDSP development board.
I have following code:
#include <math.h>
void main(void)
{
while(1)
{
float y;
y=sin(0);
}
}
When I debug the code, it gives me following error.
Can't find a source file at "/tmp/TI_MKLIBnMzocq/SRC/sin.c"
Locate the file or edit the source lookup path to include its location.
Can you please help me?
Thanks,
Ashish
Hi,
The sine function you're using above... might be defined in a header file which should be included in your project. Please check the same.
Regards,
Gautam