Forum Discussion
Altera_Forum
Honored Contributor
10 years agoIt looks like your problem is the Clock used to generate the ADC signals.
In your example the ADC is clocked with a 44.1 KHz clock whereas the control and data signals are still generated with the 4 MHz clock. If you change CLK <= F_CLK_4MHz; Clk_in <= CLK; to CLK <= Clk_mod; Clk_in <= F_CLK_4MHz; it should work.