EDA365电子论坛网

标题: 如何去掉由SKILL引起的X/D形式的DRC [打印本页]

作者: leemy    时间: 2009-12-14 13:58
标题: 如何去掉由SKILL引起的X/D形式的DRC
下载 (32.96 KB)
2009-12-14 13:50

用了个去掉多余线头SKILL,如图一。因为不正确的关闭,然后出现很多X/D 的DRC,如图二,哪位大侠知道如何去掉这样的DRC啊?
作者: deargds    时间: 2009-12-14 14:33
本帖最后由 deargds 于 2009-12-14 15:44 编辑

https://www.eda365.com/thread-29378-1-1.html
作者: shirdon    时间: 2009-12-14 15:34
; Written by:         John Horner
;                Cadence Design Systems
;                horner@cadence.com
;
;                Run with Application: Allegro, APD
;                Tested against versions 11 through 15
;                June 16/2004 - Ron Guthrie
;                Remove X-DCR markers even if they are not visible.
;
;                July 15/2004 - Ron Guthrie
;                Clear selection set to remove temp highlights
;
; This routine will remove all Externally generated DRCs from the design
axlCmdRegister( "rmxdrc" `_jbhrmvallxDRCs)
; ########################################
; Define the routine to remove the markers
; ########################################
;
(defun _jbhrmvallxDRCs ()

   axlClearSelSet()
   axlDBRefreshId(axlDBGetDesign())

   ; ###############################
   ; Remove any existing DRC markers
   ; ###############################

   axlSetFindFilter( ?enabled '(noall drcs invisible) ?onButtons '(drcs))
   Markers=axlGetSelSet(axlAddSelectAll())
   axlClearSelSet()
   (foreach Drc Markers
      (if Drc->name == "Externally Determined Violation" then
            axlDeleteObject(Drc)
      ); end if Drc->name == "....
   ); end foreach Drc Markers
   axlFlushDisplay()
); end defun _jbhrmvallxDRCs
作者: shirdon    时间: 2009-12-14 15:35
from internet(killallxdrc.il)
作者: leemy    时间: 2009-12-25 17:02
谢谢各位大侠,问题解决了
作者: leemy    时间: 2009-12-25 17:03
回复 2# deargds


    版主还真是高啊,佩服!!




欢迎光临 EDA365电子论坛网 (https://bbs.eda365.com/) Powered by Discuz! X3.2