Add TI s-pwson-n8 footprint (for drv8837)
[hw/altusmetrum] / packages / s-pwson-n8.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 Footprint::process_clearance = 0.07;
22
23 real pad_expose = 0.1;
24 real pad_width = 0.28;
25 real pad_height = 0.50;
26 real pad_x_spacing = 0.50;
27 real pad_y_gap = 1.4;
28 real pad_y_spacing = pad_y_gap + pad_height;
29
30 real package_width = 2;
31 real package_height = 2;
32
33 real center_width = 1.6;
34 real center_height = 0.9;
35
36
37 real pad_x_off = package_width / 2 - (pad_width - pad_expose) / 2 + pad_expose;
38
39 real num_pad = 4;       /* per side */
40
41 element_start("s-pwson-n8");
42
43 /* full center pad */
44 pad_mm_options(0, 0, center_width, center_height, "9", "9", "square,nopaste");
45
46 /* 63% paste coverage */
47 real paste_coverage = 0.63;
48 real paste_coverage_scale = sqrt(paste_coverage);
49 pad_mm_options(0, 0, center_width * paste_coverage_scale,
50                center_height * paste_coverage_scale, "9", "9", "square");
51
52 real pad_y_off = pad_y_spacing / 2;
53
54 real pad_off(int n) {
55         return pad_x_spacing * (n - (num_pad - 1) / 2);
56 }
57
58 for (int pad = 0; pad < num_pad; pad++) {
59         /* bottom side (1-4) */
60
61         pad_mm(pad_off(pad),
62                -pad_y_off,
63                pad_width,
64                pad_height,
65                sprintf("%d", pad + 1),
66                sprintf("%d", pad + 1));
67         
68         /* top side (8-5) */
69
70         pad_mm(pad_off(pad),
71                pad_y_off,
72                pad_width,
73                pad_height,
74                sprintf("%d", 8 - pad),
75                sprintf("%d", 8 - pad));
76         
77 }
78
79 element_end();