Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > VHDL > ERROR:Pack:1107 - ISE 6.1

Reply
Thread Tools

ERROR:Pack:1107 - ISE 6.1

 
 
Mastupristi
Guest
Posts: n/a
 
      11-21-2003
I use Xilinx ISE webpack 6.1 sp 2, and a spartanII/e xc2s50e.

In my project I use the signals clk_in and clk_out.
The frequency of clk_out can be half of clk_in one, or can be equal to
clk_in.
clk_out is the "official" clock that goes to the rest of fpga.

Now I use clk_out = clk_in/2, and I placed clk_in in GCLK pin using
constrain.

I wrote:
clk_out <= clk2 when reset = '0' else '0';

gen_clk: process(clk_in)
begin
if rising_edge(clk_in) then
clk2 <= not clk2;
end if;
end process;

(clk2 is a simple signal) in this way all works.

If I try to make clk_out equal to clk_in I obtain this error:
ERRORack:1107 - Unable to combine the following symbols into a single
IOB component:
PAD symbol "clk_in" (Pad Signal = clk_in)
BUF symbol "clk_in_IBUF" (Output Signal = clk_in_IBUF)
Each of the following constraints specifies an illegal physical site
for a component of type IOB:
Symbol "clk_in" (LOC=B
Please correct the constraints accordingly.

I cannot understand....

How can I avoid this error without moving clk_in pin from GCLK?

thanks

--
Mastupristi?

Posted from X-Privat Free NNTP server - www.x-privat.org
 
Reply With Quote
 
 
 
Reply

Thread Tools

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 Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
FFT using Xilinx ISE Hari VHDL 1 01-05-2004 04:35 PM
problem with ise webpack 6.1 Max VHDL 1 09-24-2003 11:34 PM
Webpack Vs. ISE Dave VHDL 10 09-18-2003 08:09 AM
ISE Foundation 4.1i compatibility Davo VHDL 0 08-19-2003 05:53 PM
Conversion ALDEC Foundation to Webpack ISE 4.2 and later Thomas Bartzick VHDL 0 06-26-2003 07:51 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57