fix annular ring diameters on LCD footprint
[hw/altusmetrum] / packages / tfsoj-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.28;
22 real pad_height = 0.56;
23 real pad_spacing = 0.5;
24
25 real pad_y_off = 2.1 / 2 - pad_height/2;
26
27 real package_width = 2;
28 real package_height = 1.75;
29
30 real num_pad = 4;       /* per side */
31
32 element_start("tfsoj-8");
33
34 real pad_off(int n) {
35         return pad_spacing * (n - (num_pad - 1) / 2);
36 }
37
38 real corner(int dx, int dy) {
39         real    x = dx * package_width / 2;
40         real    y = dy * package_height / 2;
41         real    len = 0.4;
42
43         line(x, y, x - dx * len, y);
44         line(x, y, x, y - dy * len);
45 }
46
47 corner(-1, -1);
48 corner(1, -1);
49 corner(-1, 1);
50 corner(1, 1);
51
52 real dot_off = -.3;
53
54 line(-package_width/2 + dot_off, package_height/2 - dot_off,
55      -package_width/2 + dot_off, package_height/2 - dot_off);
56
57 for (int pad = 0; pad < num_pad; pad++) {
58         /* left side (1-4) */
59
60         pad_mm(pad_off(pad),
61                pad_y_off,
62                pad_width,
63                pad_height,
64                sprintf("%d", pad + 1),
65                sprintf("%d", pad + 1));
66         
67         /* right side (5-8) */
68
69         pad_mm(-pad_off(pad),
70                -pad_y_off,
71                pad_width,
72                pad_height,
73                sprintf("%d", pad + 5),
74                sprintf("%d", pad + 5));
75         
76 }
77
78 element_end();