From: Keith Packard Date: Thu, 29 Oct 2015 01:01:41 +0000 (+0900) Subject: Fix edge-launch BNC connector name (vbrite - v-bite) X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=1e6f6b8f00eb3d2b57b5be83c3801bd166c28030;p=hw%2Faltusmetrum Fix edge-launch BNC connector name (vbrite - v-bite) Signed-off-by: Keith Packard --- diff --git a/packages/Makefile b/packages/Makefile index 38a0cb8..4a4ddb1 100644 --- a/packages/Makefile +++ b/packages/Makefile @@ -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 index 0000000..a6eb9b9 --- /dev/null +++ b/packages/v-bite.5c @@ -0,0 +1,49 @@ +/* + * Copyright © 2015 Keith Packard + * + * 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 index e643ceb..0000000 --- a/packages/vbrite.5c +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright © 2015 Keith Packard - * - * 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();