Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (1)
DSP6713 FIR algorithm implementation
no vote
This is the realization of an FIR algorithm DSP6713 on the simulation through, you can directly observe the waveform, when basic usage, generate waveforms after viewing the waveform generated in the CCS's view / * Purpose: FIR filter procedure for processing a group of data * / / * Prototype in C: void fir_filter (const int x [], const int h [], \ * / / * Short y [], int n, int m, int s); * / / * Const int x []: buffer array input signal, int type, filtering can not be modified * / / * Const int h []: filter coefficient array, int type, filtering can not be modified * / / * Short y []: buffer array output signal, short type * / / * N: filter length, in this example ORDER_FIR * / / * M: length of the input signal, ie, the array x [] of length * / / * S: The number of shifts when generating filter coefficients integer used in this example ROUND_FIR
jiang8121
2016-08-23
1
1
No more~