Fix edge-launch BNC connector name (vbrite - v-bite)
authorKeith Packard <keithp@keithp.com>
Thu, 29 Oct 2015 01:01:41 +0000 (10:01 +0900)
committerKeith Packard <keithp@keithp.com>
Thu, 29 Oct 2015 01:01:41 +0000 (10:01 +0900)
Signed-off-by: Keith Packard <keithp@keithp.com>
packages/Makefile
packages/v-bite.5c [new file with mode: 0644]
packages/vbrite.5c [deleted file]

index 38a0cb83fb5a40af8cf1950ac1eec9d07f2a1e89..4a4ddb15ee8e7a6f3f4d215168949796030c09c3 100644 (file)
@@ -91,7 +91,7 @@ FOOTPRINTS= \
        TO252AA.fp \
        SD.fp \
        microSD.fp \
-       vbrite.fp \
+       v-bite.fp \
        qfn16-3x3.fp \
        1051330011.fp
 
diff --git a/packages/v-bite.5c b/packages/v-bite.5c
new file mode 100644 (file)
index 0000000..a6eb9b9
--- /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-Bite 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("v-bite");
+
+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();
diff --git a/packages/vbrite.5c b/packages/vbrite.5c
deleted file mode 100644 (file)
index e643ceb..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * 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();