Forum Discussion
Altera_Forum
Honored Contributor
16 years agoFilter & decimation implementation on AD7401
Hello everybody! We have chosen the AD7401 Sigma Delta modulator for our project, translated the Verilog code given by the datasheet into VHDL and are now confused about the results of the simu...
Altera_Forum
Honored Contributor
16 years agoA clock enable should be active for one clock cycle, e.g.:
process(word_count)
begin
if word_count = x"ff" then
word_clk <= '1';
else
word_clk <= '0';
end if;
end process; and if reset = '0' then
--
elsif clk20'event and clk20 = '1' then
if word_clk = '1' then
DN0 <= CN2;
--
end if;
end if;