Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion JLCPCB/JLCPCB.kicad_dru
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,15 @@
)

(rule "Clearance: track to PTH hole perimeter"
(condition "A.isPlated() && B.Type == 'track' && A.Net != B.Net")
(condition "A.isPlated() && A.Type != 'via' && B.Type == 'track' && A.Net != B.Net")
(constraint hole_clearance (min 0.33mm))
)

(rule "Clearance: track to Via hole perimeter"
(condition "A.Type == 'via' && B.Type == 'track' && A.Net != B.Net")
(constraint hole_clearance (min 0.254mm))
)

# TODO: try combining with rule "Clearance: PTH to track, different nets"
(rule "Clearance: track to pad"
(condition "A.Type == 'pad' && B.Type == 'track' && A.Net != B.Net")
Expand Down