diff --git a/bgtex.kicad_pcb b/bgtex.kicad_pcb index 196875f..19a3d37 100644 --- a/bgtex.kicad_pcb +++ b/bgtex.kicad_pcb @@ -3381,7 +3381,7 @@ (fp_text reference C1 (at 0 -1.43 90) (layer F.SilkS) hide (effects (font (size 0.9144 1.016) (thickness 0.127))) ) - (fp_text value 1u (at 0 1.43 90) (layer F.Fab) hide + (fp_text value NP (at 0 1.43 90) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1)) diff --git a/bgtex.sch b/bgtex.sch index 23bfafb..d732119 100644 --- a/bgtex.sch +++ b/bgtex.sch @@ -439,7 +439,7 @@ L Device:C C1 U 1 1 5F2C6082 P 1750 1350 F 0 "C1" V 1498 1350 50 0000 C CNN -F 1 "1u" V 1589 1350 50 0000 C CNN +F 1 "NP" V 1589 1350 50 0000 C CNN F 2 "Capacitor_SMD:C_0603_1608Metric" H 1788 1200 50 0001 C CNN F 3 "~" H 1750 1350 50 0001 C CNN 1 1750 1350 diff --git a/plot.py b/plot.py index b86c1f9..4fda4eb 100755 --- a/plot.py +++ b/plot.py @@ -149,11 +149,13 @@ class _Layer: _OUTPUT_DIR = 'plots' _PDF_SCALE = 5.0 _DEFAULT_PASTE_PAD_EXCLUSIONS = ( + _PadExclusion('C1'), _PadExclusion('R1'), _PadExclusion('R4'), _PadExclusion('U3', _UNNAMED_PAD) ) _MIN_PASTE_PAD_EXCLUSIONS = ( + _PadExclusion('C1'), _PadExclusion('C3'), _PadExclusion('C4'), _PadExclusion('C5'), @@ -169,7 +171,11 @@ _MIN_PASTE_PAD_EXCLUSIONS = ( _PadExclusion('U2'), _PadExclusion('U3') ) -_WSON_PASTE_PAD_EXCLUSIONS = _PadExclusion('R1'), _PadExclusion('R4') +_WSON_PASTE_PAD_EXCLUSIONS = ( + _PadExclusion('C1'), + _PadExclusion('R1'), + _PadExclusion('R4') + ) _DEFAULT_MASK_PAD_EXCLUSIONS = _PadExclusion('U3', 9), _LAYERS = ( _Layer(F_Fab, 'F.Fab'),