- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Is there an Altera primitive to create an FDDRRSE?
sync_clk_ddr : fddrrse port map ( Q => dds_sync_clk, C0 => clk_125, C1 => clk_125_inv, CE => '1', D0 => '1', D1 => '0', R => '0', S => '0');Link Copied
5 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
--- Quote Start --- Is there an Altera primitive to create an FDDRRSE? --- Quote End --- Probably. But providing a port map tells us absolutely nothing. Explain what you are using the component for. Cheers, Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
TO_BE_DONE
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
--- Quote Start --- Sorry, but I figured it out... I'm using the altddio_in MegaFunction. --- Quote End --- That was the component I was going to recommend :) If your external signals are LVDS, then there are also altlvds_rx/tx components. Cheers, Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I do have one question about the altddio_out/altddio_in. I'm creating the altddio_out with a bit width of 1. The wizard generates a variation file with the following entity...
ENTITY sync_clk_ddr IS PORT ( datain_h : IN STD_LOGIC_VECTOR (0 DOWNTO 0); datain_l : IN STD_LOGIC_VECTOR (0 DOWNTO 0); outclock : IN STD_LOGIC ; dataout : OUT STD_LOGIC_VECTOR (0 DOWNTO 0) ); END sync_clk_ddr; When I go to use this MegaFunction, it expects the data_in and data_out to be a vector. I'm trying to assign the data_out to a std_logic. Is there a way to convert froma std_logic_vector to std_logic?- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
--- Quote Start --- When I go to use this MegaFunction, it expects the data_in and data_out to be a vector. I'm trying to assign the data_out to a std_logic. Is there a way to convert froma std_logic_vector to std_logic? --- Quote End --- Yeah, use dataout(0) <= dataout where the signal dataout is std_logic. Cheers, Dave

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page