用“取缔”一词,是源自《嘻哈四重奏》里面卢导的口头禅,哈哈借用一下!大多数DRC warning甚至某些error可以忽略不计,不影响生成网表,但是要想成为一名成熟的电子工程师,你可以忽略某些错误,但是必须懂得为什么会产生这些错误,如何取缔掉这些错误,这样才能控制这些错误的作用范围,不致影响系统整体的设计。 1、养成好习惯,先做Annotate,后做 ERC 检查,避免元器件重名; 2、切记不要随意从其他page中拷贝元器件,这样容易在ERC检查时导致以下三个错误: 例如从 这个图(来源于另一个page)中拷贝C209这个电容到下面page中,ERC检查出现了以下三个错误: ERROR: [DRC0010]
Duplicate
reference C209 ERROR: [DRC0031]
Same Pin
Number connected to more than one net. Ctrl_ultrasound_launch/C209/1
Nets: 'GND' and '5V_A4'. ERROR: [DRC0031]
Same Pin
Number connected to more than one net. Ctrl_ultrasound_launch/C209/2
Nets: '9V_A1' and 'GND'. 解决方法:先做annotate,所有元器件重新编号,再做ERC检查,这样避免不同页面元器件重名而导致网络连接在一起,可以直接解决以上3个错误! WARNING: [DRC0003]
Port has a type which is inconsistent with
other ports on the net TMCL 解决方法:Net TMCL两端的端口类型冲突,修改一下type就好了! ERROR: [DRC0004]
Possible
pin type conflict U5,Vout
Output Connected to Power 解决方法:把芯片的pintype由output换成passive WARNING: [DRC0004]
Possible pin type conflict E2,1
Bidirectional Connected to Output: BENCH, C (0.40, 10.10) 解决方法: These errors are produced based on the
settings in the ERC matrix. If you've finished your design and you think that
the connections are correct after you've checked all these errors, you can
change the settings in the ERC matrix to remove them from the Design Rules
Check. 1.
Select the schematic page in the Project
Manager. 2.
Choose Design Rules Check from the Tools
menu, then select the ERC matrix tab. 3.
Make changes to the matrix, then click OK.
When you click OK, Design Rules Check will run with the new settings. 简单来说就是修改ERC matrix,来控制ERC检查,这样就提高了容错能力,更容易通过, 但前提是对自己的设计要有把握,确保正确。 WARNING: [DRC0006]
Net has fewer than two connections A01 解决方法:网络标号只有一处,没有配对的,或者网络标号命名有差别,注意必须命名相同才表示连接。 WARNING: [DRC0006] Net has fewer than two connections 5V_A2 解决方法:这个warning的产生在于一页原理图上电源bar只有一次连接点,这样就会报 错,通常可以忽略,或者在芯片的电源引脚旁边加一个0.1uF的 bypass 电容 接地就 OK,这种设计习惯也是比较好的,只要名称相同,不同页的电源bar就是相连的。 ERROR: [DRC0007]
Net has no driving source A01-PC 解决方法: 总线网络标号有问题,即总线的标号必须与总线名中的一致,例如总线名为:A[0..5],那么总线的分支网络标号就只能取A0、A1、……A5中间的一部分或者全部,而不能超出或者改成其他的。 Two nets in the same schematic have the same name, but there is no
off-page connector--〉 解决方法:you label
a port or off-page connector with a name that is used by a power symbol or
power pin on the schematic. It would be best to replace the port with a power
symbol to transfer power through the design. If you have verified that there
are no connectivity problems when running the netlist, you can ignore this
warning. ERROR: [DRC0026] This reference has already been assigned to a different package type. U1 解决方法:检查U1各个部分part
reference还有 封装有没有不同的 ERROR: [DRC0027] Other parts in this package have different values or PCB
footprints. U1--〉 解决方法:检查U1各个部分part reference还有 封装有没有不同的 ERROR: [DRC0029]
Bus has
no name and therefore defines no signals. N9792615 解决方法:再总线上加上总线名称即可消除两端的DRC错误,总线命名必须和总线两端的的分支网络名相一致,即必须是分支网络名称的集合。 如果在原理图中Ctrl+F找不到出现DRC错误的Net,或出现DRC错误的Net的坐标超出图纸范围,则应把原理图的Page Size放大,有可能是因为当初画图时某些器件忘记删掉就直接调整图纸大小了。。。确实很低级的错误 这篇东西也参考了网上很多文章和论坛里面的一些问题和解答,由于自己做得辛苦,所以就综合一下子,结合自己的理解和过程,希望初学的朋友不再对DRC检查迷茫,当然这些内容也不全,后续碰到了其他warning和error再补上来 。 |
|