void CHIRP()
{
float pulse=0.1;
float gamma=BW*100*PI;
float tt=1/fs;
float conv=180/PI;
float Phi;
float Chirp;
float omega=2*PI*BW;
float theta;
for (n=0; n<480; n++)
{
Phi=(omega*(n*tt)) + (gamma*((n*tt)*(n*tt)));
theta=Phi*conv;
Chirp=cos(Phi);
}
}