rename old microSD symbol, update to include card detect pin for quantimotor
[hw/altusmetrum] / packages / u-pdfn-8.5c
1 /*
2  * Copyright © 2012 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 load "footprint.5c"
19 import Footprint;
20
21 real pad_width = 0.95;
22 real pad_height = 0.35;
23 real pad_spacing = 0.80;        /* center to center, along the pads */
24 real pad_center = 2.6;          /* center to center, across the part */
25
26 real center_width = 0.3;
27 real center_height = 2.4;
28
29 real package_width = 3;
30 real package_height = 4;
31
32 real pad_x_off = pad_center / 2;
33
34 real num_pad = 4;       /* per side */
35
36 element_start("u-pdfn-8");
37
38 real pad_off(int n) {
39         return pad_spacing * (n - (num_pad - 1) / 2);
40 }
41
42 real corner(int dx, int dy) {
43         real    x = dx * package_width / 2;
44         real    y = dy * package_height / 2;
45         real    len = 0.4;
46
47         line(x, y, x - dx * len, y);
48         line(x, y, x, y - dy * len);
49 }
50
51 corner(-1, -1);
52 corner(1, -1);
53 corner(-1, 1);
54 corner(1, 1);
55
56 real dot_off = -.3;
57
58 line(-package_width/2 + dot_off, -package_height/2 + dot_off,
59      -package_width/2 + dot_off, -package_height/2 + dot_off);
60
61 for (int pad = 0; pad < num_pad; pad++) {
62         /* left side (1-4) */
63
64         pad_mm(-pad_x_off,
65                pad_off(pad),
66                pad_width,
67                pad_height,
68                sprintf("%d", pad + 1),
69                sprintf("%d", pad + 1));
70         
71         /* right side (5-8) */
72
73         pad_mm(pad_x_off,
74                -pad_off(pad),
75                pad_width,
76                pad_height,
77                sprintf("%d", pad + 5),
78                sprintf("%d", pad + 5));
79         
80 }
81
82 /* center pad */
83 pad_mm(0, 0,
84        center_width,
85        center_height,
86        "9", "9");
87
88 element_end();