Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How can I set quartus constraint ?

Status
Not open for further replies.

bianchi77

Advanced Member level 4
Advanced Member level 4
Joined
Jun 11, 2009
Messages
1,313
Helped
21
Reputation
44
Reaction score
20
Trophy points
1,318
Location
California
Visit site
Activity points
9,442
Hello guys,

I saw this code in xilinx constraint,
How can I use it in Quartus II ?

Code:
TIMESPEC "TS_clk" = PERIOD "clk" 30 ns HIGH 50 %;
Can I use it directly on *.qsf ?

Please see screen shot :
quartus timing.jpg

Any links, info or experiences will be very appreciated,
thanks
 

you need to use timequest to set timing constraints, you cannot use the ucf file. Timequest uses sdc files.

equivolent would be

create_clock -period 30 -name TS_clk [get_ports {TS_clk}]

This creates a clock and names it locally as TS_clk. then you associated it with the pin TS_clk (so the clock name doesnt have to match the pin name).
 

By running the Timequest Timing Analysis Wizard in Quartus, you are guided step-by-step through the basic settings.
 
you need to use timequest to set timing constraints, you cannot use the ucf file. Timequest uses sdc files.

equivolent would be

create_clock -period 30 -name TS_clk [get_ports {TS_clk}]

This creates a clock and names it locally as TS_clk. then you associated it with the pin TS_clk (so the clock name doesnt have to match the pin name).
Thanks mate, I'll try and see what happen.
 

If your design has PLLs then use TimeQuest Timing Analyzer from ASSIGNMENTS and if it's the other way round you can directly go from TOOLS
Is it related on how to set a clock for EP2C8Q208 ?
How to set the clock for EP2C8Q208 ? Does it have internal clock ? set by quartus ? or crystal ?
thanks

- - - Updated - - -

If your design has PLLs then use TimeQuest Timing Analyzer from ASSIGNMENTS and if it's the other way round you can directly go from TOOLS
Is it related on how to set a clock for EP2C8Q208 ?
How to set the clock for EP2C8Q208 ? Does it have internal clock ? set by quartus ? or crystal ?
thanks
 

Short version: yes requires external clock and yes you will have to set a constraint that tells the tools what kind of clock you are using. As for constraints ... I know xilinx has a constraints guide. I am not well versed in Altera stuff but I would be surprised if they do not have the exact same documentation-like-thingy-you-can-read to find out how to set up these constraints.
 
Last edited:
  • Like
Reactions: FvM

    FvM

    Points: 2
    Helpful Answer Positive Rating
Short version: yes requires external clock and yes you will have to set a constraint that tells the tools what kind of clock you are using. As for constraints ... I know xilinx has a constraints guide. I am not well versed in Altera stuff but I would be surprised if they do not have the exact same documentation-like-thingy-you-can-read to find out how to set up these constraints.
Thanks for the knowledge I'll find out on the handbook of altera...
 

Thanks for the knowledge I'll find out on the handbook of altera...

VICTORY! XD

Yes, please find out in the easy to use Altera documentation. :) That's precisely what the fine people at Altera intended it for.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top