| 问答编号# |
32630
|
| 型号 |
SW-Constraints System |
| 最后更新日期 |
2009-06-05 00:00:00.0 |
| 记录状态 |
Active |
| 关键词 |
timegroup, grouping, missed, question mark, asterisk, TNM |
疑问描述
Keywords: timegroup, grouping, missed, question mark, asterisk, TNM
I created a constraint similar to the following and I am receiving errors:
PIN "and*" TPSYNC = "and_star_tpsync"
My error(s) look similar to the following:
"ERROR:ConstraintSystem:58 - Constraint <PIN "and*" TPSYNC = "and_star_tpsync">
[bufpll_div1.ucf(23)]: PIN "and*" does not match any design objects."
解决方案
The * and ? will work for part of a component name, or for part of a PIN name, but not for both at the same time.
Generally, a PIN is referred to with the following syntax:
<COMP>.<PIN>
In the above example, 'and*' would not be able to find any PINs. To work around this issue, use 'and*.*'. This change allows the Constraints System to search both component names and PIN names.
Following is the required modifications performed on the above example:
PIN "and*.*" TPSYNC = "and_star_tpsync"
This issue is scheduled to be fixed in the next major release of software.