代码搜索结果
找到约 3,686,282 项符合
C 的代码
noise_gen.c
//Noise_gen.c Pseudo-random sequence generation
#include "noise_gen.h" //header file for noise sequence
int fb;
shift_reg sreg; //shift reg structure
interrupt void c_int11()
dft.c
//DFT.c DFT of N-point from lookup table. Output from watch window
#include
#include
void dft(short *x, short k, int *out); //function prototype
#define N 8 //num
echo.c
//Echo.c Echo effect changed with size of buffer (delay)
short input, output;
short bufferlength = 3000; //buffer size for delay
short buffer[3000]; //create buffer
short i = 0;
s
sweepde.c
//SweepDE.c Generates a sweeping sinusoid using a difference equation
#include
#define two_pi (2*3.1415926) //2*pi
#define two_14 16384 //2^14
#define T
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
loop_intr.c
//Loop_intr.c Loop program using interrupt, output=input
//Comm routines and support files included in C6xdskinit.c
interrupt void c_int11() //interrupt service routine
{
int sample_d
iir.c
//IIR.c IIR filter using cascaded Direct Form II
//Coefficients a's and b's correspond to b's and a's from MATLAB
#include "bs1750.cof" //BS @ 1750 Hz coefficient file
short dly[stages][
adaptidfirw.c
//AdaptIDFIRW.c Adaptive FIR for system identification of an FIR (uses C67 tools)
#include "bp55.cof" //fixed FIR filter coefficients
#include "noise_gen.h" //support file f
factclasm.c
//Factclasm.c Factorial of number. Calls linear ASM function
#include //for print statement
void main()
{
short number = 7; //set value
short result;
sinegen_table.c
//Sinegen_table.c Generates a sinusoid for a look-up table
#include
#define table_size (short)10 //set table size
short sine_table[table_size]; //sine table array
short i;
interr