FPGA Central - World's 1st FPGA / CPLD Portal

FPGA Central

World's 1st FPGA Portal

 

Go Back   FPGA Groups > NewsGroup > FPGA

FPGA comp.arch.fpga newsgroup (usenet)

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-01-2005, 04:25 PM
P. Royla
Guest
 
Posts: n/a
Default Chipscope and LVDS clock (IBUFGDS)

Hello,

i am working with chipscope pro 7.1
with following code:



entity BoardTest is
Port(
led_o : out std_logic_vector(3 downto 0);
clk_prg_p_i : in std_logic;
clk_prg_n_i : in std_logic);
end BoardTest;


attribute IOSTANDARD : string ;
attribute BOX_TYPE : string ;

component IBUFGDS
port ( I : in std_logic;
IB : in std_logic;
O : out std_logic);
end component;

attribute IOSTANDARD of IBUFGDS : component is "LVDS_25";
attribute BOX_TYPE of IBUFGDS : component is "BLACK_BOX";

begin

U1: IBUFGDS port map (I => clk_prg_p_i, IB => clk_prg_n_i, O =>
clk_prg_i);

A: process (clk_prg_i, res)
begin
if res = '1' then
counter_a <= (others => '0');
elsif clk_prg_i = '1' and clk_prg_i'event then
counter_a <= counter_a + '1';
end if;
end process;

led_o(3) <= clk_prg_i;
res <= push_i;

end Behavioral;

when i use the chipscope inserter use ICON with ILA Core,
i cant see or select led_o(3) or clk_prg_i.
The code works fin on a Virtex 4 Board.

It is impossible to connect the LVDS Signal into the CHIPSCOPE-CORE?

Greets P.Royla


Reply With Quote
Reply

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Chipscope with clock enable. Symon FPGA 0 05-19-2004 07:12 PM
ChipScope for ISE 6.1 Tobias Möglich FPGA 1 02-18-2004 02:43 PM


All times are GMT +1. The time now is 12:34 PM.


Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Copyright 2008 @ FPGA Central. All rights reserved