clock and stable data

J

john

Hi,

I am serially outing the 48 bits of data at the rising edge of the
clock. My DAC needs the data to be stable before the rising edge of
the clock. How can I make the data available or stable just before the
rising edge of the clock.
if rising_edge (clk_a) then
if (count_begin = '1') then
p2s_counter<=p2s_counter
+1;
ser_out <= ser_buff ( to_integer ( p2s_counter ));
end if;
end if;

Regards,
John
 
J

JK

Hi,

I am serially outing the 48 bits of data at the rising edge of the
clock. My DAC needs the data to be stable before the rising edge of
the clock. How can I make the data available or stable just before the
rising edge of the clock.
if rising_edge (clk_a) then
if (count_begin = '1') then
p2s_counter<=p2s_counter
+1;
ser_out <= ser_buff ( to_integer ( p2s_counter ));
end if;
end if;

Regards,
John

If your DAC needs data with rising edge of the clock, then shift your
data at falling edge of the clock.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,777
Messages
2,569,604
Members
45,216
Latest member
topweb3twitterchannels

Latest Threads

Top