Forum Discussion
Altera_Forum
Honored Contributor
10 years agoTrouble with CIC filter
I'm trying to implement a CIC decimation filter( with R = 1000, M = 1 and N = 2 ) and Fs = 1 MHz without using the CIC IP core. Using matlab implementation I found out that the suppression of the CIC...
Altera_Forum
Honored Contributor
10 years ago --- Quote Start --- So that means I don't need the -- delays l_integrator_out_1 <= integrator_out_1; l_integrator_out_2 <= integrator_out_2; rather I only need integrator_out_1 <= (l_data_in) + integrator_out_1; -- ( o/p of the 1st integrator ) integrator_out_2 <= integrator_out_1 + integrator_out_2; -- (o/p of the 2nd integrator feed into the input of a comb) --- Quote End --- yes just basic two cascaded accumulators.