Intel® Quartus® Prime Software
Intel® Quartus® Prime Design Software, Design Entry, Synthesis, Simulation, Verification, Timing Analysis, System Design (Platform Designer, formerly Qsys)
17241 Discussions

Missing clock assignment warning

Altera_Forum
Honored Contributor II
3,007 Views

Hello, 

 

in a Cylone V SOC project under Quartus 14.0 I get the following message from the Linker: 

Warning (332060): Node: clk50a was determined to be a clock but was found without an associated clock assignment. 

 

The Project contains a .sdc file with the following constraint: 

create_clock -name {clk50a} -period 20.000 -waveform { 0.000 10.000 } 

 

Any idea what I forgot to do?
0 Kudos
2 Replies
Altera_Forum
Honored Contributor II
1,681 Views

Try: 

create_clock -name {clk50a} -period 20.000 -waveform { 0.000 10.000 } [get_ports {clk50a}] 

Otherwise you create a clock named clk50a to be used for timing analysis, but you don't bind it to any physical signal. 

To be clearer, in general you define 

create_clock -name {myclk} -period 20.000 -waveform { 0.000 10.000 } [get_ports {clk50a}] 

and then use myclk to analyze this clock net.
0 Kudos
Altera_Forum
Honored Contributor II
1,681 Views

Thank you, Cris72. 

It works, the message doesn't appear any more.
0 Kudos
Reply