Switch to altusmetrum component directory
[hw/telegps] / packages / wson6x5.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.80;
22 real pad_height = 0.50;
23 real pad_spacing = 1.27;
24
25 real pad_x_off = 6.00 / 2 - 1;
26
27 real center_width = 3.4;
28 real center_height = 4.;
29
30 real package_width = 6;
31 real package_height = 5;
32
33 real num_pad = 4;       /* per side */
34
35 element_start("wson-6x5");
36
37 real pad_off(int n) {
38         return pad_spacing * (n - (num_pad - 1) / 2);
39 }
40
41 real corner(int dx, int dy) {
42         real    x = dx * package_width / 2;
43         real    y = dy * package_height / 2;
44         real    len = 0.4;
45
46         line(x, y, x - dx * len, y);
47         line(x, y, x, y - dy * len);
48 }
49
50 corner(-1, -1);
51 corner(1, -1);
52 corner(-1, 1);
53 corner(1, 1);
54
55 real dot_off = .3;
56
57 line(-package_width/2 + dot_off, -package_height/2 + dot_off,
58      -package_width/2 + dot_off, -package_height/2 + dot_off);
59
60 for (pad = 0; pad < num_pad; pad++) {
61         /* left side (1-4) */
62
63         pad_mm(-pad_x_off - pad_width,
64                pad_off(pad),
65                pad_width,
66                pad_height,
67                sprintf("%d", pad + 1),
68                sprintf("%d", pad + 1));
69         
70         /* right side (5-8) */
71
72         pad_mm(pad_x_off + pad_width,
73                -pad_off(pad),
74                pad_width,
75                pad_height,
76                sprintf("%d", pad + 5),
77                sprintf("%d", pad + 5));
78         
79 }
80
81 pad_mm(0, 0, center_width, center_height, "GND", "GND");
82
83 element_end();