代码搜索结果

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

ramptable.c

//RAMPTABLE.C Generates a ramp using a look-up table #define table_size (int)0x400 //size of table=1024 int data_table[table_size]; //data table array int i; in

loop_print.c

//Loop_print.c Data acquisition. Loop with data printed to a file #include #define BUFFER_SIZE 64 //buffer size int i=0; int j=0; int buffer[BUFFER_SIZE];

c6xdskinit_pcm.c

//C6xdskinit_pcm.c Includes functions provided by TI, init DSK, McBSP //Contribution by Walter J. Gomes and Mike Morrow //Compile with opt level -o1 (or no opt)due to "bug" SDSsq21295 (OK with CCS V

loop_poll_pcm.c

//loop_poll_pcm.c Loop program with polling using PCM3003 codec float Fs=16000.0; //desired (Actual=14,648 Hz) void main() { comm_poll(); //init DSK,code

firbuf.c

//Firbuf.c FIR filter with output in buffer plotted with CCS #include "bp41.cof" //BP @ 1 kHz coefficient file int yn = 0; //initialize filter's output short dly[N];

c6xdskinit.c

//C6xdskinit.c Init DSK,AD535,McBSP(includes functions provided with DSK) #include #include "c6xdsk.h" #include "c6xdskinit.h" #include "c6xinterrupts.h" char polling = 0; void mcb

sine8_intr.c

//sine8_intr.c Sine generation using 8 points, f=Fs/(# of points) //Comm routines and support files included in C6xdskinit.c short loop = 0; short sin_table[8] = {0,707,1000,707,0,-707,-1000,-707

iirinverse.c

//IIRinverse.C Inverse IIR Filter #include "bp2000.cof" //BP @ 2 kHz coefficient file short dly[stages][2] = {0}; //delay samples per stage short out_type = 1; //type o

sine8_buf.c

//sine8_buf Sine generation. Output buffer plotted within CCS //Comm routines and support files included in C6xdskinit.c short loop = 0; short sine_table[8] = {0,707,1000,707,0,-707,-1000,-707};

dsp281x_piectrl.c

//########################################################################### // // FILE: DSP281x_PieCtrl.c // // TITLE: DSP281x Device PIE Control Register Initialization Functions. // //######