update ATmega32u4 datasheet to current version
[hw/altusmetrum] / packages / qfn16-3x3.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.55;
22 real metal_width = 0.32;
23 real metal_height = 0.24;
24 real pad_height = 0.30;
25 real pad_spacing = 0.50;
26 real pad_clearance = 12 / 1000 * 25.4;
27
28 real center_width = 2;
29 real center_height = 2;
30
31 real package_width = 3;
32 real package_height = 3;
33
34 real pad_x_off = package_width / 2 - metal_width;
35 real pad_y_off = package_height / 2 - metal_width;
36
37 real num_pad = 4;       /* per side */
38
39 element_start("qfn16-3x3");
40
41 real pad_off(int n) {
42         return pad_spacing * (n - (num_pad - 1) / 2);
43 }
44
45 real corner(int dx, int dy) {
46         real    x = dx * package_width / 2;
47         real    y = dy * package_height / 2;
48         real    len = 0.4;
49
50         line(x, y, x - dx * len, y);
51         line(x, y, x, y - dy * len);
52 }
53
54 corner(-1, -1);
55 corner(1, -1);
56 corner(-1, 1);
57 corner(1, 1);
58
59 real dot_off = .3;
60
61 line(-package_width/2 + dot_off, -package_height/2 + dot_off,
62      -package_width/2 + dot_off, -package_height/2 + dot_off);
63
64 for (int pad = 0; pad < num_pad; pad++) {
65         /* left side (1-4) */
66
67         pad_mm(-pad_x_off - pad_width / 2,
68                pad_off(pad),
69                pad_width,
70                pad_height,
71                sprintf("%d", pad + 1),
72                sprintf("%d", pad + 1));
73
74         /* bottom (5-8) */
75
76         pad_mm(pad_off(pad),
77                pad_y_off + pad_width / 2,
78                pad_height,
79                pad_width,
80                sprintf("%d", pad + 5),
81                sprintf("%d", pad + 5));
82
83         /* right side (9-12) */
84
85         pad_mm(pad_x_off + pad_width / 2,
86                -pad_off(pad),
87                pad_width,
88                pad_height,
89                sprintf("%d", pad + 9),
90                sprintf("%d", pad + 9));
91
92         /* top (13-16) */
93
94         pad_mm(-pad_off(pad),
95                -pad_y_off - pad_width / 2,
96                pad_height,
97                pad_width,
98                sprintf("%d", pad + 13),
99                sprintf("%d", pad + 13));
100 }
101
102 center_pad((center_t) {
103                 .x = 0,
104                 .y = 0,
105                 .width = center_width,
106                 .height = center_height,
107                 .via_cols = 2,
108                 .via_rows = 2,
109                 .name = "GND"
110                 });
111
112 element_end();