?? test.c
字號:
#include "..\include\c54fft.h"
#pragma DATA_SECTION (x,".x")
DATA x[2048];
#pragma DATA_SECTION (r,".r")
DATA r[2048];
main()
{
int i,j;
for( i=0; i<64; i++ ){
x[i*32+ 0]=0x0200; x[i*32+ 1]=0; x[i*32+ 2]=0x0300; x[i*32+ 3]=0; x[i*32+ 4]=0x0400; x[i*32+ 5]=0; x[i*32+ 6]=0x0500; x[i*32+ 7]=0;
x[i*32+ 8]=0x0600; x[i*32+ 9]=0; x[i*32+10]=0x0700; x[i*32+11]=0; x[i*32+12]=0x0800; x[i*32+13]=0; x[i*32+14]=0x0900; x[i*32+15]=0;
x[i*32+16]=0x0800; x[i*32+17]=0; x[i*32+18]=0x0700; x[i*32+19]=0; x[i*32+20]=0x0600; x[i*32+21]=0; x[i*32+22]=0x0500; x[i*32+23]=0;
x[i*32+24]=0x0400; x[i*32+25]=0; x[i*32+26]=0x0300; x[i*32+27]=0; x[i*32+28]=0x0200; x[i*32+29]=0; x[i*32+30]=0x0100; x[i*32+31]=0;
}
cbrev(x, x, 1024); /* original call format */
cfft1024(x, 1);
cbrev(x, x, 1024);
cifft1024(x, 0);
cbrev(x, x, 1024); /* normal used format */
cfft(x, 1024, 1);
cbrev(x, x, 1024);
cifft(x,1024, 0);
for(;;){}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -