-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathuCM4.kicad_dru
45 lines (33 loc) · 876 Bytes
/
uCM4.kicad_dru
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
(version 1)
# Drill/Hole Size
(rule "Drill Hole Size (Mechanical)"
(constraint hole (min 0.2mm) (max 6.3mm))
)
#(rule "Drill Hole Size Tolerance")
(rule "Blind/Buried Vias"
(constraint disallow)
(condition "A.isBlindBuriedVia()")
)
(rule "Min. Via hole size"
(constraint hole (min 0.3mm))
)
#(rule "Min. Via diameter")
(rule "PTH hole Size"
(constraint annular_width (min 0.15mm) (max 0.15mm))
(constraint hole (min 0.2mm) (max 6.35mm))
(condition "A.Type == 'Through-hole'")
)
#(rule "Pad Size")
(rule "Min. Non-plated holes"
(constraint hole (min 0.5mm))
(condition "A.Type == 'NPTH, mechanical'")
)
(rule "Min. Plated Slots"
(constraint hole (min 0.65mm))
(condition "A.isPlated() && A.Shape == 'Oval'")
)
(rule "Min. Non-Plated Slots"
(constraint hole (min 1.0mm))
(condition "!A.isPlated() && A.Shape == 'Oval'")
)
(rule "Min. Castellated Holes")