代码搜索结果

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

loop_intr_pcm.c

//loop_intr.c Loop program with interrupt using PCM3003 codec float Fs = 16000.0; //irrelevant since jumper in 3-4 interrupt void c_int11() //interrupt service routine { output_lef

adaptpredict.c

//Adaptpredict.C Adaptive predictor to cancel interference #include "wbsignal.h" //wide-band signal table look-up #define beta 1E-14 //rate of convergence #defin

fircasm.c

//FIRCASM.c FIR C program calling ASM function fircasmfunc.asm #include "bp41.cof" //BP @ Fs/8 coefficient file int yn = 0; //initialize filter's output short dly[N];

sine4_poll.c

//Sine4_poll.c Sine generation using 4 points; f=Fs/(# points)=2 kHz int loop = 0; short sine_table[4] = {0,1000,0,-1000}; //sine values short amplitude = 1; //for sli

adaptc.c

//ADAPTC.C - ADAPTATION USING LMS WITHOUT THE TI COMPILER #include #include #define beta 0.01 //convergence rate #define N 21 //or

loop_store.c

//Loop_store.c Data acquisition. Input data also stored in buffer #define BUFFER_SIZE 512 //buffer size short buffer[BUFFER_SIZE]; //buffer where data is stored short i = 0; interru

loop_poll.c

//loop_poll.c Loop program using polling, output=input //Comm routines and support files included in C6xdskinit.c void main() { int sample_data; comm_poll(); //init DSK, c

fastconvodemo.c

//fastconvosim.c Overlap-add fast convolution demonstration program //Uses FFT function from C31 DSK book. Not real-time, and therefore //does not need McBSP I/O. Run with breakpoints inserted as in

fircasm.c

//FIRCASM.c FIR C program calling ASM function fircasmfunc.asm #include "bp41.cof" //BP @ Fs/8 coefficient file int yn = 0; //initialize filter's output short dly[N];

sin1500matl.c

//Sin1500MATL.c Generates sine from table created with MATLAB #include "sin1500.h" //sin(1500) created with MATLAB short i=0; interrupt void c_int11() { output_sample(sin1500[i]); //o