add Omega2S reference schematic
[hw/altusmetrum] / packages / sot666.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 outer_pad_width = 0.50;
22 real outer_pad_height = 0.375;
23 real inner_pad_width = 0.65;
24 real inner_pad_height = 0.3;
25 real pad_spacing = 0.5375;
26
27 real package_width = 1.6;
28 real package_height = 2;
29
30 real outer_pad_x_off = 1.7 / 2;
31 real inner_pad_x_off = (1.7 + inner_pad_width - outer_pad_width) / 2;
32
33 real num_pad = 3;       /* per side */
34
35 element_start("sot666");
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 (int pad = 0; pad < num_pad; pad++) {
61         /* left side (1-3) */
62
63         real    x, y, w, h;
64         if (pad == 1) {
65                 x = inner_pad_x_off;
66                 y = pad_off(pad);
67                 w = inner_pad_width;
68                 h = inner_pad_height;
69         } else {
70                 x = outer_pad_x_off;
71                 y = pad_off(pad);
72                 w = outer_pad_width;
73                 h = outer_pad_height;
74         }
75         pad_mm(-x,
76                y,
77                w,
78                h,
79                sprintf("%d", pad + 1),
80                sprintf("%d", pad + 1));
81
82         /* right side (4-6) */
83
84         pad_mm(x,
85                -y,
86                w,
87                h,
88                sprintf("%d", pad + 4),
89                sprintf("%d", pad + 4));
90
91 }
92
93 element_end();