代码搜索结果

找到约 3,686,282 项符合 C 的代码

fir.c

//Fir.c FIR filter. Include coefficient file with length N #include "bs2700.cof" //coefficient file BS @ 2700Hz int yn = 0; //initialize filter's output short dly[N];

graphiceq.c

//GraphicEQ.c Graphic Equalizer using TI floating-point FFT functions #include #include "GraphicEQcoeff.h" //time-domain FIR coefficients #define PI 3.14159265358979 #define PTS 2

dotp4.c

//Dotp4.c Multiplies two arrays, each array with 4 numbers int dotp(short *a, short *b, int ncount); //function prototype #include //for printf #include "dotp4.h" /

fircirc.c

//FIRcirc.c C program calling ASM function using circular buffer #include "bp1750.cof" //BP at 1750 Hz coeff file int yn = 0; //init filter's output interrupt void c_in

adaptidiir.c

//AdaptIDIIR.c Adaptive FIR for system ID of fixed IIR using C67x tools #include "bp2000.cof" //BP @ 2kHz fixed IIR coeff #include "noise_gen.h" //support file noise sequence

c6211dskinit.c

/*C6211dskinit.c Includes functions provided by TI,init DSK,AD535,McBSP*/ #include #include "c6211dsk.h" #include "c6211dskinit.h" #include "c6211interrupts.h" /*TI routine from codec_p

pll.c

/* pll.c Software Linear PLL 6211 Program */ /* Upendra Ummethala and Mike Mellor */ /* December 19, 2000 EE539 Real Time DSP Final Project */ #define N 800

pll_rtdx.c

/* pll_RTDX.c Software Linear PLL 6211 Program With RTDX */ /* Upendra Ummethala and Mike Mellor */ /* December 19, 2000 EE539 Real Time DSP Final Project */ #d

fftsinetable.c

//FFTsinetable.c FFT{sine}from table. Calls TI float-point FFT function #include #define N 32 //number of FFT points #define SQRT_N 32 //SQRT_N >= SQRT(N) #define FREQ

fft256c.c

//FFT256c.c FFT implementation calling a C-coded FFT function #include #define PTS 256 //# of points for FFT #define PI 3.14159265358979 typedef struct