You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
454 B
16 lines
454 B
(version 1)
|
|
|
|
(rule "PTH to Track Clearance"
|
|
(constraint hole_clearance (min 1.0mm))
|
|
(condition "A.Type == 'Pad' && A.Pad_Type == 'Through-hole' && B.Type =='Track'")
|
|
)
|
|
|
|
(rule "NPTH to Track Clearance"
|
|
(constraint hole_clearance (min 1.0mm))
|
|
(condition "(A.Type == 'Pad' && A.Pad_Type == 'NPTH, mechanical') && B.Type =='Track'")
|
|
)
|
|
|
|
(rule "Max Drill Hole Size Mechanical"
|
|
(constraint hole (max 2.0mm))
|
|
(condition "A.Type == 'Pad'")
|
|
)
|