Add packages used by usbtrng
authorKeith Packard <keithp@keithp.com>
Wed, 25 Feb 2015 06:27:58 +0000 (22:27 -0800)
committerKeith Packard <keithp@keithp.com>
Wed, 25 Feb 2015 06:29:13 +0000 (22:29 -0800)
Signed-off-by: Keith Packard <keithp@keithp.com>
packages/0806.5c [new file with mode: 0644]
packages/Makefile
packages/sod123.5c [new file with mode: 0644]
packages/sot323.5c [new file with mode: 0644]

diff --git a/packages/0806.5c b/packages/0806.5c
new file mode 100644 (file)
index 0000000..80159b2
--- /dev/null
@@ -0,0 +1,40 @@
+/*
+ * Copyright © 2012 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;
+
+real pad_width = 0.8;
+real pad_height = 1.8;
+
+real pad_x_off = 0.8 / 2 + pad_width/2;
+
+element_start("0806");
+
+pad_mm(-pad_x_off,
+       0,
+       pad_width,
+       pad_height,
+       "1", "1");
+
+pad_mm(pad_x_off,
+       0,
+       pad_width,
+       pad_height,
+       "2", "2");
+
+element_end();
index 9db32be544a8a64b3a67168add1b437e543c4e8b..b4ab118ffa659beff56267b04cea7376b95a2995 100644 (file)
@@ -75,7 +75,10 @@ FOOTPRINTS= \
        usb_onboard.fp \
        u-pdfn-8.fp \
        ufqfpn28.fp \
-       sot666.fp
+       sot666.fp \
+       sot323.fp \
+       sod123.fp \
+       0806.fp
 
 .5c.fp:
        nickle $*.5c > $@
diff --git a/packages/sod123.5c b/packages/sod123.5c
new file mode 100644 (file)
index 0000000..497559f
--- /dev/null
@@ -0,0 +1,64 @@
+/*
+ * Copyright © 2012 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;
+
+real pad_width = 1.2;
+real pad_height = 0.7;
+
+real package_width = 2.7;
+real package_height = 1.55;
+
+real pad_x_off = 3.7 / 2;
+
+real num_pad = 3;
+
+element_start("sod123");
+
+real corner(int dx, int dy) {
+       real    x = dx * package_width / 2;
+       real    y = dy * package_height / 2;
+       real    len = 0.4;
+
+       line(x, y, x - dx * len, y);
+       line(x, y, x, y - dy * len);
+}
+
+corner(-1, -1);
+corner(1, -1);
+corner(-1, 1);
+corner(1, 1);
+
+real dot_off = -.3;
+
+line(-package_width/2 + dot_off, -package_height/2 + dot_off,
+     -package_width/2 + dot_off, -package_height/2 + dot_off);
+
+pad_mm(-pad_x_off,
+       0,
+       pad_width,
+       pad_height,
+       "1", "1");
+
+pad_mm(pad_x_off,
+       0,
+       pad_width,
+       pad_height,
+       "2", "2");
+
+element_end();
diff --git a/packages/sot323.5c b/packages/sot323.5c
new file mode 100644 (file)
index 0000000..138dd8b
--- /dev/null
@@ -0,0 +1,75 @@
+/*
+ * Copyright © 2012 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;
+
+real pad_width = 0.9;
+real pad_height = 0.7;
+real pad_spacing = 0.65;
+
+real package_width = 1.25;
+real package_height = 2;
+
+real pad_x_off = 1.9 / 2;
+
+real num_pad = 3;
+
+element_start("sot323");
+
+real pad_off(int n) {
+       return pad_spacing * (n - (num_pad - 1) / 2);
+}
+
+real corner(int dx, int dy) {
+       real    x = dx * package_width / 2;
+       real    y = dy * package_height / 2;
+       real    len = 0.4;
+
+       line(x, y, x - dx * len, y);
+       line(x, y, x, y - dy * len);
+}
+
+corner(-1, -1);
+corner(1, -1);
+corner(-1, 1);
+corner(1, 1);
+
+real dot_off = -.3;
+
+line(-package_width/2 + dot_off, -package_height/2 + dot_off,
+     -package_width/2 + dot_off, -package_height/2 + dot_off);
+
+pad_mm(-pad_x_off,
+       -pad_spacing,
+       pad_width,
+       pad_height,
+       "1", "1");
+
+pad_mm(-pad_x_off,
+       pad_spacing,
+       pad_width,
+       pad_height,
+       "2", "2");
+
+pad_mm(pad_x_off,
+       0,
+       pad_width,
+       pad_height,
+       "3", "3");
+
+element_end();