packages: Add footprint for vbrite edge-launch connectors (including BNC)
authorKeith Packard <keithp@keithp.com>
Tue, 29 Sep 2015 00:30:50 +0000 (17:30 -0700)
committerKeith Packard <keithp@keithp.com>
Tue, 29 Sep 2015 00:32:36 +0000 (17:32 -0700)
Signed-off-by: Keith Packard <keithp@keithp.com>
packages/Makefile
packages/vbrite.5c [new file with mode: 0644]

index 31d71f10daa8563d2199c2331a83718aaafd42fe..602e7e3c13fbb78e7154438c67a5784df41bb230 100644 (file)
@@ -87,7 +87,8 @@ FOOTPRINTS= \
        g5rl1ae.fp \
        DO-214AC.fp \
        BU2032SM.fp \
-       TO252AA.fp
+       TO252AA.fp \
+       vbrite.fp
 
 .5c.fp:
        nickle $*.5c > $@
diff --git a/packages/vbrite.5c b/packages/vbrite.5c
new file mode 100644 (file)
index 0000000..e643ceb
--- /dev/null
@@ -0,0 +1,49 @@
+/*
+ * Copyright © 2015 Keith Packard <keithp@keithp.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+
+load "footprint.5c"
+import Footprint;
+
+/* Bomar Inteconnect Products, Inc V-Brite footprint.
+ *
+ * This footprint covers their BNC, TNC, F and N connectors
+ */
+
+real pin_drill = 2.2;
+real pin_y = 5.1;
+real pin_x = 5.9;
+real pin_copper = 0.2;
+
+real gnd_width = 8.0;
+real gnd_height = 3.5;
+
+real center_width = 8.0;
+real center_height = 2.0;
+
+element_start("vbrite");
+
+pad_mm_options(gnd_width / 2, -pin_y, gnd_width, gnd_height, "GND", "2", "square,nopaste");
+pad_mm_options(gnd_width / 2, -pin_y, gnd_width, gnd_height, "GND", "2", "onsolder,square,nopaste");
+pin_mm(gnd_width - pin_x, -pin_y, pin_drill, pin_copper, "GND", "2");
+
+pad_mm_options(gnd_width / 2, pin_y, gnd_width, gnd_height, "GND", "2", "square,nopaste");
+pad_mm_options(gnd_width / 2, pin_y, gnd_width, gnd_height, "GND", "2", "onsolder,square,nopaste");
+pin_mm(gnd_width -pin_x, pin_y, pin_drill, pin_copper, "GND", "2");
+
+pad_mm_options(center_width / 2, 0, center_width, center_height,"1", "1", "square,nopaste");
+
+element_end();