Forum Discussion
Altera_Forum
Honored Contributor
16 years agoUPSAMPLING BLOCK Problem
Hi guys, has anyone experiences with the DSP Builder "UPSAMPLING BLOCK" ??? I want to use it but there is one big Problem: The Up Sampling block increases the output sample rate from the input...
Altera_Forum
Honored Contributor
16 years agotry this:
The important thing is to keep data coming in at reduced rate signal count :integer range 0 to 4:= 0; in a clked process if(count = 4) then count <= 0; enable <= '1'; else count <= count + 1; enable <= '0'; endif; if(enable = '1') then data_out <= data_in; endif;