Commit 2cc1bd74 authored by Tristan Gingold's avatar Tristan Gingold

dmtd_sampler: make oversamping enable signal truly sync

... with the input clock
parent cf7ae807
Pipeline #4906 failed with stage
......@@ -175,10 +175,10 @@ begin -- rtl
p_the_dmtd_itself : process(clk_in)
begin
if rising_edge(clk_in) then
if en_i = '1' then
clk_i_d0 <= clk_dmtd_i;
if en_i = '1' then
clk_i_d1 <= clk_i_d0;
end if;
clk_i_d1 <= clk_i_d0;
end if;
end process;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment