mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-22 06:55:06 +00:00
17 lines
454 B
Plaintext
Executable File
17 lines
454 B
Plaintext
Executable File
(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'")
|
|
)
|