Forum Discussion

Altera_Forum's avatar
Altera_Forum
Icon for Honored Contributor rankHonored Contributor
13 years ago

warning:tsca_clk was determined to be a clock but was found without an associated clo

Warning: Node: tsca_clk was determined to be a clock but was found without an associated clock assignment.

“tsca_clk” comes from an external device ,the clock frequency range from 8~50Mhz.how can i constrain this clock?

5 Replies

  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    Just create a virtual clock with required frequency and waveform parameters.

  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    --- Quote Start ---

    Just create a virtual clock with required frequency and waveform parameters.

    --- Quote End ---

    hi,

    virtual clock? I have no idea about the required waveform.

    for example,

    create_clock -period 2.000 -name tsca_clk tsca_clk -waveform {0 1} ?

    can the above constraints work correctly?

    thx :)
  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    Is this clock is driving internal logic? If yes, then it's a real clock, not virtual:

    create_clock -name tsca_clk -period 20.000 
  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    --- Quote Start ---

    Is this clock is driving internal logic? If yes, then it's a real clock, not virtual:

    create_clock -name tsca_clk -period 20.000 

    --- Quote End ---

    yes,it is driving internel modules,and its frequency is changeable.

    the period is set as to the highest frequency?