hi i tried running a small program with some change from the Digitial Signal processing and Applications with TMS3206713 Rulph Chassaing shown below. I included the required files and lib files bot got an error: #6001 cannot open file..what might be wrong?
#include<stdio.h>
#include<math.h>
#include "DSK6713_AIC23.h"
Uint32 fs=DSK6713_AIC23_FREQ_8KHZ;
short output_sample;
int i;
interrupt void c_int11()
{
for(i=0;i<=100;i++)
{
output_sample=sin(2*3.141*0.01*i);
}
}
void main()
{
comm_intr(); //init DSK, codec, McBSP
while(1); //infinite loop
}