delete old copy of symbol in wrong directory
[hw/altusmetrum] / packages / s-pwson-n6.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_expose = 0.1;
22 real pad_width = 0.3;
23 real pad_height = 0.7;
24 real pad_x_spacing = 0.65;
25 real pad_y_gap = 1.4;
26 real pad_y_spacing = pad_y_gap + pad_height;
27
28 real package_width = 2;
29 real package_height = 2;
30
31 real center_width = 1.6;
32 real center_height = 1.0;
33
34 real pad_x_off = package_width / 2 - (pad_width - pad_expose) / 2 + pad_expose;
35
36 real num_pad = 3;       /* per side */
37
38 element_start("s-pwson-n6");
39
40 pad_mm_partial(0, 0, center_width, center_height, 0.63, "7");
41
42 via_mm(-0.9, 0, process_drill, process_ring, "GND");
43 via_mm( 0.9, 0, process_drill, process_ring, "GND");
44
45 real pad_y_off = pad_y_spacing / 2;
46
47 real pad_off(int n) {
48         return pad_x_spacing * (n - (num_pad - 1) / 2);
49 }
50
51 for (int pad = 0; pad < num_pad; pad++) {
52         /* bottom side (1-3) */
53
54         pad_mm(pad_off(pad),
55                pad_y_off,
56                pad_width,
57                pad_height,
58                sprintf("%d", pad + 1),
59                sprintf("%d", pad + 1));
60
61         /* top side (6-4) */
62
63         pad_mm(pad_off(pad),
64                -pad_y_off,
65                pad_width,
66                pad_height,
67                sprintf("%d", 6 - pad),
68                sprintf("%d", 6 - pad));
69 }
70
71 rect(-package_width/2, -package_height/2, package_width, package_height);
72
73 real dot_off = -.3;
74
75 line(-package_width/2 + dot_off, package_height/2 - dot_off,
76      -package_width/2 + dot_off, package_height/2 - dot_off);
77
78 element_end();