因为公司的IC扫描sensor的频率常常和adapter中的noise频率重叠,导致IC接收到的数据出错。所以我们经常会用示波器看adapter的Noise,再用傅里叶变换找到相应应该回避的频段,包括倍频,分频的频段。懒人自有自己的做法,所以写了个小程序用来计算回避的频段。

 // date : 2013/8/26
// designer :pengxiaoen
//function : g #include "stdio.h" FILE *fp1;
double noise[];
double ptd[][]; double function_ptd ()
{
int m=;
double temp;
while (noise[m])
{
temp = /noise[m]-;
ptd[m][] = temp /;
ptd[m][] = temp/;
ptd[m][] = temp/;
ptd[m][] = temp/;
ptd[m][] = temp;
ptd[m][] = temp*; m++; }
} int main ()
{
int i=;
int j=;
for (j=;j<;j++) noise[j] =; printf("0 to end\n");
printf ("The %d number is :",(i+));
scanf ("%lf",&noise[i]); while (noise[i])
{
i++;
printf ("The %d number is :",(i+));
scanf ("%lf",&noise[i]);
}
function_ptd (); for(i=;i<;i++)
{ for(j=;j<;j++)
printf ("%8.0lf",ptd[i][j]);
printf("\n");
}
printf("\n\n");
system ("pause");
}

24M 是IC的固定频率。输入的是测量到的Noise频率,以0 作为终止。

04-15 11:46