반응형

설계를 할 때, 뭔가 Rule에 어긋나면 DRC마커를 띄어주어야 하고, 이에 대한 내용을 설명해야한다.

SKILL에서는 이를 지원한다.

아래 링크는 Cadence에서 DRC마커를 사용하는 예제동영상을 보여준다.

필자는 아주 기초적인 DRC마커를 띄우는 법을 포스팅해본다.

 

https://resources.pcb.cadence.com/vidyard-all-players/creating-drc-markers-in-the-pcb-editor-with-skill

 

Creating DRC Markers in the PCB Editor with SKILL

The PCB Editor SKILL API provides the axlDBCreateExternalDRC() to allow you to programmatically add DRC markers to the PCB Editor database.

resources.pcb.cadence.com

 

axlDBCreateExternalDRC("Story" 10:10 "drc error class/all" nil nil "50 mils")

첫번째는 원점기준 (45,45) 에 마커를 생성. drc error class의 하위 class인 all 에 생성한다.

두번째는 원점기준 (55,55) 에 마커를 생성. drc error class의 하위 class인 top 에 생성한다.

아래와 같이 옵션목록에 다음과 같은 Class와 subClass가 있다는 것을 알 수 있다. 이 class를 넣어줘야 한다.

결과.

DRC마커 - 마우스우클릭 -Show Element 하면, 아까 입력한 값들을 볼 수 있다.

반응형

+ Recent posts